From 68ba91b10db9bdffac3053c8c031df1a5e661f86 Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com> Date: Mon, 30 Dec 2024 13:53:06 -0300 Subject: [PATCH] SHOW COMMENT ON is not valid ISQL command --- tests/bugs/core_1142_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/bugs/core_1142_test.py b/tests/bugs/core_1142_test.py index 4e434773..352e89f4 100644 --- a/tests/bugs/core_1142_test.py +++ b/tests/bugs/core_1142_test.py @@ -18,13 +18,13 @@ db = db_factory(init=init_script) test_script = """comment on generator T is 'comment'; commit; -show comment on generator T; +show comments; comment on generator T is 'comment'; commit; -show comment on generator T; +show comments; comment on generator T is 'different comment'; commit; -show comment on generator T; +show comments; """ act = isql_act('db', test_script)