mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-22 21:43:06 +01:00
81 lines
1.9 KiB
Python
81 lines
1.9 KiB
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: issue-5444
|
|
ISSUE: 5444
|
|
TITLE: Unique index could be created on non-unique data
|
|
DESCRIPTION:
|
|
JIRA: CORE-5161
|
|
FBTEST: bugs.core_5161
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
test_script = """
|
|
-- Confirmed on: WI-V3.0.0.32378, WI-V2.5.6.26980:
|
|
-- one might to create unique index when number of inserted rows was >= 3276.
|
|
|
|
recreate table t (id int, x int);
|
|
set term ^;
|
|
execute block as
|
|
declare i int = 0;
|
|
begin
|
|
--while (i < 100000) do
|
|
while (i < 50000) do -- minimal number for reproduce: 3276
|
|
begin
|
|
insert into t values ( :i, iif(:i=1, -888888888, -:i) );
|
|
i = i + 1;
|
|
end
|
|
end
|
|
^
|
|
set term ;^
|
|
|
|
set list on;
|
|
|
|
select sign(count(*)) as cnt_non_zero from t;
|
|
|
|
set echo on;
|
|
|
|
insert into t values(1, -999999999);
|
|
commit;
|
|
|
|
create unique index t_id_unique on t(id);
|
|
|
|
set plan on;
|
|
select id, x from t where id = 1;
|
|
"""
|
|
|
|
act = isql_act('db', test_script)
|
|
|
|
expected_stdout = """
|
|
CNT_NON_ZERO 1
|
|
insert into t values(1, -999999999);
|
|
commit;
|
|
create unique index t_id_unique on t(id);
|
|
set plan on;
|
|
select id, x from t where id = 1;
|
|
PLAN (T NATURAL)
|
|
ID 1
|
|
X -888888888
|
|
ID 1
|
|
X -999999999
|
|
"""
|
|
|
|
expected_stderr = """
|
|
Statement failed, SQLSTATE = 23000
|
|
attempt to store duplicate value (visible to active transactions) in unique index "T_ID_UNIQUE"
|
|
-Problematic key value is ("ID" = 1)
|
|
"""
|
|
|
|
@pytest.mark.version('>=2.5.6')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.expected_stderr = expected_stderr
|
|
act.execute()
|
|
assert (act.clean_stderr == act.clean_expected_stderr and
|
|
act.clean_stdout == act.clean_expected_stdout)
|
|
|