2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
"""
|
|
|
|
ID: table.create-05
|
|
|
|
TITLE: CREATE TABLE - create table with same name
|
|
|
|
DESCRIPTION:
|
|
|
|
FBTEST: functional.table.create.05
|
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
init_script = """CREATE TABLE test(
|
2021-04-26 20:07:00 +02:00
|
|
|
c1 SMALLINT
|
|
|
|
);
|
2022-02-04 19:05:19 +01:00
|
|
|
commit;
|
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
db = db_factory(init=init_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
test_script = """CREATE TABLE test(
|
2021-04-26 20:07:00 +02:00
|
|
|
c1 SMALLINT,
|
|
|
|
c2 INTEGER
|
2022-02-04 19:05:19 +01:00
|
|
|
);
|
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
act = isql_act('db', test_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-02-04 19:05:19 +01:00
|
|
|
expected_stderr = """Statement failed, SQLSTATE = 42S01
|
2021-04-26 20:07:00 +02:00
|
|
|
unsuccessful metadata update
|
|
|
|
-CREATE TABLE TEST failed
|
|
|
|
-Table TEST already exists
|
|
|
|
"""
|
|
|
|
|
|
|
|
@pytest.mark.version('>=3.0')
|
2022-02-04 19:05:19 +01:00
|
|
|
def test_1(act: Action):
|
|
|
|
act.expected_stderr = expected_stderr
|
|
|
|
act.execute()
|
|
|
|
assert act.clean_stderr == act.clean_expected_stderr
|