From e330eb2a2e9b002c8044ed7964f353743034d6d0 Mon Sep 17 00:00:00 2001 From: Patrick Huang Date: Thu, 19 Dec 2024 16:37:27 +0800 Subject: [PATCH] fix e2e --- e2e_test/batch/catalog/information_schema.slt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/e2e_test/batch/catalog/information_schema.slt b/e2e_test/batch/catalog/information_schema.slt index c3e14ff11dcb4..eed5fbd9d68dc 100644 --- a/e2e_test/batch/catalog/information_schema.slt +++ b/e2e_test/batch/catalog/information_schema.slt @@ -26,12 +26,12 @@ public mv_pkey public mv public t_pkey public t query TT -select schema_name, schema_owner from information_schema.schemata order by schema_name; +select schema_name from information_schema.schemata order by schema_name; ---- -information_schema root -pg_catalog root -public root -rw_catalog root +information_schema +pg_catalog +public +rw_catalog query TTTTTII select * EXCEPT(constraint_catalog, table_catalog) from information_schema.key_column_usage where table_schema = 'public' order by table_name;