aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/variables.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-08-26 10:41:31 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2011-08-26 13:53:09 -0400
commite86fdb0ab224eaa73d907ab16a2dd0e0058699e0 (patch)
tree19bed12afd338f89ab119dbf830114e60ca75f11 /src/bin/psql/variables.h
parent910725b49ddf5c827658717f458fb14d0044f251 (diff)
downloadpostgresql-e86fdb0ab224eaa73d907ab16a2dd0e0058699e0.tar.gz
postgresql-e86fdb0ab224eaa73d907ab16a2dd0e0058699e0.zip
Support non-ASCII letters in psql variable names.
As in the backend, the implementation actually accepts any non-ASCII character, but we only document that you can use letters.
Diffstat (limited to 'src/bin/psql/variables.h')
-rw-r--r--src/bin/psql/variables.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/psql/variables.h b/src/bin/psql/variables.h
index 4197069b4b7..865391dba7b 100644
--- a/src/bin/psql/variables.h
+++ b/src/bin/psql/variables.h
@@ -32,10 +32,6 @@ struct _variable
typedef struct _variable *VariableSpace;
-/* Allowed chars in a variable's name */
-#define VALID_VARIABLE_CHARS "abcdefghijklmnopqrstuvwxyz"\
- "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "0123456789_"
-
VariableSpace CreateVariableSpace(void);
const char *GetVariable(VariableSpace space, const char *name);