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
0 commit comments