Content-Length: 276089 | pFad | http://github.com/postgrespro/postgres/commit/1f998863b0bc6fc8ef3d971d9c6d2c29b52d8ba2
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b0582 commit 1f99886Copy full SHA for 1f99886
src/bin/psql/tab-complete.c
@@ -76,7 +76,7 @@
76
#endif
77
78
/* word break characters */
79
-#define WORD_BREAKS "\t\n@$><=;|&{() "
+#define WORD_BREAKS "\t\n@><=;|&{() "
80
81
/*
82
* Since readline doesn't let us pass any state through to the tab completion
@@ -6061,7 +6061,7 @@ identifier_needs_quotes(const char *ident)
6061
/* Check syntax. */
6062
if (!((ident[0] >= 'a' && ident[0] <= 'z') || ident[0] == '_'))
6063
return true;
6064
- if (strspn(ident, "abcdefghijklmnopqrstuvwxyz0123456789_") != strlen(ident))
+ if (strspn(ident, "abcdefghijklmnopqrstuvwxyz0123456789_$") != strlen(ident))
6065
6066
6067
Fetched URL: http://github.com/postgrespro/postgres/commit/1f998863b0bc6fc8ef3d971d9c6d2c29b52d8ba2
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
0 commit comments