Skip to content
Snippets Groups Projects
Commit e037c351 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart
Browse files

Update for modified quoting style in some error messages.

parent be74113f
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment