Skip to content

Commit c897903

Browse files
committed
update scansup.c
1 parent d72ef88 commit c897903

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/backend/parser/scansup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,15 @@ identifier_case_transform(const char *ident, int len)
149149
char *upper_ident = NULL, *lower_ident = NULL, *result = NULL;
150150
int i;
151151

152-
for (i = 0; i < len; i++)
152+
/*for (i = 0; i < len; i++)
153153
{
154154
if (ident[i] == '/')
155155
{
156156
result = palloc0(len + 1);
157157
memcpy(result, ident, len);
158158
return result;
159159
}
160-
}
160+
}*/
161161

162162
upper_ident = upcase_identifier(ident, len, true, true);
163163
lower_ident = downcase_identifier(ident, len, true, true);

0 commit comments

Comments
 (0)