Add missing block of expected output to object_address
authorTomas Vondra <[email protected]>
Sun, 9 Jul 2017 12:36:38 +0000 (14:36 +0200)
committerTomas Vondra <[email protected]>
Sun, 9 Jul 2017 12:36:38 +0000 (14:36 +0200)
The regression test was clearly missing a block of expected output,
likely due to a mistake during initial merge conflict resolution.

src/test/regress/expected/object_address.out

index 89d78ee17fff8d442ee06509dff615d155f87e1d..79aeb88386e4cd8bc615938ba8529e9c87661dac 100644 (file)
@@ -79,6 +79,15 @@ END;
 $$;
 ERROR:  Internal subtransactions not supported in Postgres-XL
 CONTEXT:  PL/pgSQL function inline_code_block line 8 during statement block entry
+-- miscellaneous other errors
+select * from pg_get_object_address('operator of access method', '{btree,integer_ops,1}', '{int4,bool}');
+ERROR:  operator 1 (int4, bool) of operator family integer_ops for access method btree does not exist
+select * from pg_get_object_address('operator of access method', '{btree,integer_ops,99}', '{int4,int4}');
+ERROR:  operator 99 (int4, int4) of operator family integer_ops for access method btree does not exist
+select * from pg_get_object_address('function of access method', '{btree,integer_ops,1}', '{int4,bool}');
+ERROR:  function 1 (int4, bool) of operator family integer_ops for access method btree does not exist
+select * from pg_get_object_address('function of access method', '{btree,integer_ops,99}', '{int4,int4}');
+ERROR:  function 99 (int4, int4) of operator family integer_ops for access method btree does not exist
 DO $$
 DECLARE
        objtype text;