2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
#
|
|
|
|
# id: bugs.core_5854
|
|
|
|
# title: Very poor "similar to" performance
|
|
|
|
# decription:
|
|
|
|
# Confirmed normal work (evaluation for less than 10 ms) on WI-T4.0.0.1598.
|
|
|
|
# Quantifier value was increased to 1000, string 'abcd.abc' is used for pattern search.
|
|
|
|
#
|
|
|
|
# ::: NOTE :::
|
|
|
|
# doc\\sql.extensions\\README.similar_to.txt:
|
|
|
|
# Since FB 4 the repeat factor low/high values could not be greater than 1000.
|
|
|
|
#
|
|
|
|
# tracker_id: CORE-5854
|
|
|
|
# min_versions: ['4.0']
|
|
|
|
# versions: 4.0
|
|
|
|
# qmid: None
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from firebird.qa import db_factory, isql_act, Action
|
|
|
|
|
|
|
|
# version: 4.0
|
|
|
|
# resources: None
|
|
|
|
|
|
|
|
substitutions_1 = []
|
|
|
|
|
|
|
|
init_script_1 = """"""
|
|
|
|
|
|
|
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
|
|
|
|
|
|
|
test_script_1 = """
|
|
|
|
set list on;
|
|
|
|
set count on;
|
|
|
|
|
|
|
|
set term ^;
|
|
|
|
execute block as
|
|
|
|
begin
|
|
|
|
rdb$set_context( 'USER_SESSION','DTS_START', cast('now' as timestamp) );
|
|
|
|
rdb$set_context( 'USER_SESSION','MAX_THRESHOLD_MS', 100 );
|
|
|
|
-- ^
|
|
|
|
-- |
|
|
|
|
-- #############################
|
|
|
|
-- MAX ALLOWED EXECUTION TIME,MS
|
|
|
|
-- #############################
|
|
|
|
end
|
|
|
|
^
|
|
|
|
set term ;^
|
|
|
|
|
|
|
|
select iif ('abcd.abc' similar to '[[:ALPHA:].]{1,1000}.ab' ,1,0) result
|
|
|
|
from rdb$database
|
|
|
|
;
|
|
|
|
|
|
|
|
set count off;
|
|
|
|
select
|
|
|
|
iif( evaluated_ms <= max_allowed_ms
|
|
|
|
,'acceptable'
|
|
|
|
,'TOO LONG: ' || evaluated_ms || ' ms - this is more then threshold = ' || max_allowed_ms || ' ms'
|
|
|
|
) as duration
|
|
|
|
from (
|
|
|
|
select
|
|
|
|
datediff( millisecond from cast(rdb$get_context( 'USER_SESSION','DTS_START') as timestamp) to current_timestamp ) evaluated_ms
|
|
|
|
,cast( rdb$get_context( 'USER_SESSION','MAX_THRESHOLD_MS' ) as int ) as max_allowed_ms
|
|
|
|
from rdb$database
|
|
|
|
);
|
|
|
|
"""
|
|
|
|
|
|
|
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
|
|
|
|
|
|
|
expected_stdout_1 = """
|
|
|
|
RESULT 0
|
|
|
|
Records affected: 1
|
|
|
|
DURATION acceptable
|
|
|
|
"""
|
|
|
|
|
|
|
|
@pytest.mark.version('>=4.0')
|
2021-04-28 12:42:11 +02:00
|
|
|
def test_1(act_1: Action):
|
2021-04-26 20:07:00 +02:00
|
|
|
act_1.expected_stdout = expected_stdout_1
|
|
|
|
act_1.execute()
|
|
|
|
assert act_1.clean_expected_stdout == act_1.clean_stdout
|
|
|
|
|