diff options
author | Tom Lane | 2017-09-04 17:45:20 +0000 |
---|---|---|
committer | Tom Lane | 2017-09-04 17:45:20 +0000 |
commit | 9d36a386608d7349964e76120e48987e3ec67d04 (patch) | |
tree | 391e170a2d3594590177fc15a58c7cd4cfcf4511 /doc/src | |
parent | 863d75439e8733b4bf6195a2c8a09966f04d8fbe (diff) |
Adjust pgbench to allow non-ASCII characters in variable names.
This puts it in sync with psql's notion of what is a valid variable name.
Like psql, we document that "non-Latin letters" are allowed, but actually
any non-ASCII character is accepted.
Fabien Coelho
Discussion: https://postgr.es/m/20170405.094548.1184280384967203518.t-ishii@sraoss.co.jp
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pgbench.sgml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml index 03e1212d50a..f5db8d18d32 100644 --- a/doc/src/sgml/ref/pgbench.sgml +++ b/doc/src/sgml/ref/pgbench.sgml @@ -771,6 +771,8 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</> <para> There is a simple variable-substitution facility for script files. + Variable names must consist of letters (including non-Latin letters), + digits, and underscores. Variables can be set by the command-line <option>-D</> option, explained above, or by the meta commands explained below. In addition to any variables preset by <option>-D</> command-line options, |