2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2022-01-23 20:41:55 +01:00
|
|
|
"""
|
|
|
|
ID: issue-4767
|
|
|
|
ISSUE: 4767
|
|
|
|
TITLE: Positioned UPDATE statement prohibits index usage for the subsequent cursor field references
|
|
|
|
DESCRIPTION:
|
|
|
|
JIRA: CORE-4447
|
2022-02-02 15:46:19 +01:00
|
|
|
FBTEST: bugs.core_4447
|
2022-01-23 20:41:55 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-23 20:41:55 +01:00
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-23 20:41:55 +01:00
|
|
|
init_script = """
|
2021-04-26 20:07:00 +02:00
|
|
|
recreate table ts(id int, x int, y int, z int, constraint ts_pk_id primary key (id) );
|
|
|
|
recreate table tt(x int, y int, z int, constraint tt_pk_xy primary key (x,y) );
|
|
|
|
commit;
|
|
|
|
|
|
|
|
insert into ts
|
|
|
|
select row_number()over(), rand()*10, rand()*10, rand()*10
|
|
|
|
from rdb$types;
|
|
|
|
commit;
|
|
|
|
|
|
|
|
insert into tt select distinct x,y,0 from ts;
|
2022-01-23 20:41:55 +01:00
|
|
|
commit;
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-23 20:41:55 +01:00
|
|
|
db = db_factory(init=init_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-23 20:41:55 +01:00
|
|
|
test_script = """
|
2021-04-26 20:07:00 +02:00
|
|
|
set planonly;
|
|
|
|
set term ^;
|
|
|
|
execute block as
|
|
|
|
begin
|
|
|
|
for select id,x,y,z from ts as cursor c
|
|
|
|
do begin
|
|
|
|
update ts set id = id where current of c; -- <<<<<<<<<<<<<<< ::: NB ::: we lock record in source using "current of" clause
|
|
|
|
update tt t set t.z = t.z + c.z where t.x=c.x and t.y = c.y;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
^ set term ;^
|
|
|
|
set planonly;
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2023-03-04 17:33:50 +01:00
|
|
|
act = isql_act('db', test_script, substitutions = [('(--\\s+)?line \\d+, col(umn)? \\d+', '')])
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-23 20:41:55 +01:00
|
|
|
expected_stdout = """
|
2021-04-26 20:07:00 +02:00
|
|
|
PLAN (T INDEX (TT_PK_XY))
|
|
|
|
PLAN (C TS NATURAL)
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
|
|
|
@pytest.mark.version('>=3.0')
|
2022-01-23 20:41:55 +01:00
|
|
|
def test_1(act: Action):
|
|
|
|
act.expected_stdout = expected_stdout
|
|
|
|
act.execute()
|
|
|
|
assert act.clean_stdout == act.clean_expected_stdout
|
2021-04-26 20:07:00 +02:00
|
|
|
|