File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments