citus/src/test/regress/expected/multi_metadata_attributes_0...

11 lines
468 B
Plaintext

-- if the output of following query changes, we might need to change
-- some heap_getattr() calls to heap_deform_tuple(). This errors out in
-- postgres versions before 11.
SELECT attrelid::regclass, attname, atthasmissing, attmissingval
FROM pg_attribute
WHERE atthasmissing
ORDER BY attrelid, attname;
ERROR: column "atthasmissing" does not exist
LINE 1: SELECT attrelid::regclass, attname, atthasmissing, attmissin...
^