1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Update for modified quoting style in some error messages.

This commit is contained in:
Thomas G. Lockhart
1997-10-30 16:53:51 +00:00
parent be74113f76
commit e037c351d4

View File

@ -3,11 +3,11 @@ select
select * from nonesuch;
WARN:parser: parse error at or near "select"
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;
WARN:attribute "nonesuch" not found
WARN:attribute 'nonesuch' not found
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;
WARN:parser: parse error at or near "from"
QUERY: select distinct on foobar * from pg_database;