We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c35e499 commit 1ba7c89Copy full SHA for 1ba7c89
1 file changed
src/backend/parser/scansup.c
@@ -147,6 +147,17 @@ char *
147
identifier_case_transform(const char *ident, int len)
148
{
149
char *upper_ident = NULL, *lower_ident = NULL, *result = NULL;
150
+ int i;
151
+
152
+ for (i = 0; i < len; i++)
153
+ {
154
+ if (ident[i] == '/' || ident[i] == '.')
155
156
+ result = palloc0(len + 1);
157
+ memcpy(result, ident, len);
158
+ return result;
159
+ }
160
161
162
upper_ident = upcase_identifier(ident, len, true, true);
163
lower_ident = downcase_identifier(ident, len, true, true);
0 commit comments