mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 13:33:07 +01:00
74 lines
1.9 KiB
Python
74 lines
1.9 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: issue-5351
|
|
ISSUE: 5351
|
|
TITLE: Add datatypes (VAR)BINARY(n) and BINARY VARYING(n) as alias for (VAR)CHAR(n) CHARACTER SET OCTETS
|
|
DESCRIPTION:
|
|
JIRA: CORE-5064
|
|
FBTEST: bugs.core_5064
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
test_script = """
|
|
recreate table test(x binary(8), y varbinary(8));
|
|
set list on;
|
|
set sqlda_display on;
|
|
|
|
-- Check that new datatypes can be used in SQL:
|
|
select rdb$db_key,t.* from test t;
|
|
|
|
-- Check that new datatypes can be used in PSQL:
|
|
set term ^;
|
|
execute block returns(x binary(8), y varbinary(8)) as
|
|
begin
|
|
select rdb$db_key,rdb$db_key
|
|
from rdb$database where 1=0
|
|
into x,y;
|
|
suspend;
|
|
end^
|
|
set term ;^
|
|
|
|
"""
|
|
|
|
act = isql_act('db', test_script)
|
|
|
|
expected_stdout = """
|
|
INPUT message field count: 0
|
|
|
|
OUTPUT message field count: 3
|
|
01: sqltype: 452 TEXT Nullable scale: 0 subtype: 0 len: 8 charset: 1 OCTETS
|
|
: name: DB_KEY alias: DB_KEY
|
|
: table: TEST owner: SYSDBA
|
|
02: sqltype: 452 TEXT Nullable scale: 0 subtype: 0 len: 8 charset: 1 OCTETS
|
|
: name: X alias: X
|
|
: table: TEST owner: SYSDBA
|
|
03: sqltype: 448 VARYING Nullable scale: 0 subtype: 0 len: 8 charset: 1 OCTETS
|
|
: name: Y alias: Y
|
|
: table: TEST owner: SYSDBA
|
|
|
|
INPUT message field count: 0
|
|
|
|
OUTPUT message field count: 2
|
|
01: sqltype: 452 TEXT Nullable scale: 0 subtype: 0 len: 8 charset: 1 OCTETS
|
|
: name: X alias: X
|
|
: table: owner:
|
|
02: sqltype: 448 VARYING Nullable scale: 0 subtype: 0 len: 8 charset: 1 OCTETS
|
|
: name: Y alias: Y
|
|
: table: owner:
|
|
|
|
X <null>
|
|
Y <null>
|
|
"""
|
|
|
|
@pytest.mark.version('>=4.0')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.execute()
|
|
assert act.clean_stdout == act.clean_expected_stdout
|
|
|