6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

SHOW COMMENT ON is not valid ISQL command

This commit is contained in:
Adriano dos Santos Fernandes 2024-12-30 13:53:06 -03:00 committed by GitHub
parent ba2fe0f292
commit 68ba91b10d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)