mirror of
https://github.com/postgres/postgres.git
synced 2025-12-15 02:22:24 +03:00
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.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user