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

Updated tests\functional\basic\isql\test_00.py: adjust expected stdout/stderr to current FB version.

This commit is contained in:
pavel-zotov 2024-11-16 13:54:46 +03:00
parent 95be77a751
commit ec113ab750

View File

@ -17,7 +17,7 @@ test_script = """
help set;
"""
act = isql_act('db', test_script)
act = isql_act('db', test_script, substitutions = [ ('[ \t]+', ' '), ])
fb3x_checked_stdout = """
Frontend commands:
@ -122,7 +122,7 @@ fb6x_checked_stdout = """
SHOW <object> [<name>] -- display system information
<object> = CHECK, COLLATION, DATABASE, DOMAIN, EXCEPTION, FILTER, FUNCTION,
GENERATOR, GRANT, INDEX, PACKAGE, PROCEDURE, ROLE, SQL DIALECT,
SYSTEM, TABLE, TRIGGER, VERSION, USERS, VIEW
SYSTEM, TABLE, TRIGGER, VERSION, USERS, VIEW, WIRE_STATISTICS
EXIT -- exit and commit changes
QUIT -- exit and roll back changes
All commands may be abbreviated to letters in CAPitals
@ -149,6 +149,7 @@ fb6x_checked_stdout = """
SET TIME -- toggle display of timestamp with DATE values
SET TERM <string> -- change statement terminator string
SET WIDTH <col> [<n>] -- set/unset print width to <n> for column <col>
SET WIRE_stats -- toggle display of wire (network) statistics
All commands may be abbreviated to letters in CAPitals
"""