mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
Update for modified quoting style in some error messages.
This commit is contained in:
parent
be74113f76
commit
e037c351d4
@ -3,11 +3,11 @@ select
|
|||||||
select * from nonesuch;
|
select * from nonesuch;
|
||||||
WARN:parser: parse error at or near "select"
|
WARN:parser: parse error at or near "select"
|
||||||
QUERY: select nonesuch from pg_database;
|
QUERY: select nonesuch from pg_database;
|
||||||
WARN:attribute "nonesuch" not found
|
WARN:attribute 'nonesuch' not found
|
||||||
QUERY: select * from pg_database where nonesuch = pg_database.datname;
|
QUERY: select * from pg_database where nonesuch = pg_database.datname;
|
||||||
WARN:attribute "nonesuch" not found
|
WARN:attribute 'nonesuch' not found
|
||||||
QUERY: select * from pg_database where pg_database.datname = nonesuch;
|
QUERY: select * from pg_database where pg_database.datname = nonesuch;
|
||||||
WARN:attribute "nonesuch" not found
|
WARN:attribute 'nonesuch' not found
|
||||||
QUERY: select distinct on foobar from pg_database;
|
QUERY: select distinct on foobar from pg_database;
|
||||||
WARN:parser: parse error at or near "from"
|
WARN:parser: parse error at or near "from"
|
||||||
QUERY: select distinct on foobar * from pg_database;
|
QUERY: select distinct on foobar * from pg_database;
|
||||||
|
Loading…
Reference in New Issue
Block a user