Skip to content

Commit b1133c4

Browse files
Removed downcase function from ColIdDef parse rule
Task: BABEL-5761 Signed-off-by: Manisha Deshpande <[email protected]>
1 parent 5e62ffa commit b1133c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/parser/gram.y

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17687,7 +17687,7 @@ ColIdDef: IDENT
1768717687
/* Now downcase the colname if in the TSQL dialect and the default
1768817688
* collation is case-insensitive.
1768917689
*/
17690-
$$ = downcaseIfTsqlAndCaseInsensitive($1);
17690+
$$ = $1;
1769117691
}
1769217692
| unreserved_keyword
1769317693
{
@@ -17697,7 +17697,7 @@ ColIdDef: IDENT
1769717697
/* Now downcase the colname in the TSQL dialect if the database collation
1769817698
* is case-sensitive.
1769917699
*/
17700-
$$ = downcaseIfTsqlAndCaseInsensitive(pstrdup($1));
17700+
$$ = pstrdup($1);
1770117701
}
1770217702
| col_name_keyword
1770317703
{
@@ -17707,7 +17707,7 @@ ColIdDef: IDENT
1770717707
/* Now downcase the colname in the TSQL dialect if the database collation
1770817708
* is case-sensitive.
1770917709
*/
17710-
$$ = downcaseIfTsqlAndCaseInsensitive(pstrdup($1));
17710+
$$ = pstrdup($1);
1771117711
}
1771217712
;
1771317713

0 commit comments

Comments
 (0)