2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
"""
|
|
|
|
ID: issue-3596
|
|
|
|
ISSUE: 3596
|
|
|
|
TITLE: View with "WITH CHECK OPTION" doesn't like TRIM function in WHERE
|
|
|
|
DESCRIPTION:
|
|
|
|
JIRA: CORE-3222
|
2022-02-02 15:46:19 +01:00
|
|
|
FBTEST: bugs.core_3222
|
2022-01-22 21:59:15 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
init_script = """CREATE TABLE Foo (
|
2021-04-26 20:07:00 +02:00
|
|
|
Bar INTEGER,
|
|
|
|
Str CHAR(31)
|
|
|
|
);
|
|
|
|
COMMIT;
|
|
|
|
"""
|
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
db = db_factory(init=init_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
test_script = """CREATE VIEW VIEW_Foo (
|
2021-04-26 20:07:00 +02:00
|
|
|
Bar
|
|
|
|
) AS SELECT
|
|
|
|
Bar
|
|
|
|
FROM Foo
|
|
|
|
WHERE(Trim(Str) = 'test')
|
|
|
|
WITH CHECK OPTION
|
|
|
|
;
|
|
|
|
COMMIT;
|
|
|
|
SHOW VIEW VIEW_Foo;
|
|
|
|
"""
|
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
act = isql_act('db', test_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
expected_stdout = """BAR INTEGER Nullable
|
2021-04-26 20:07:00 +02:00
|
|
|
View Source:
|
|
|
|
==== ======
|
|
|
|
SELECT
|
|
|
|
Bar
|
|
|
|
FROM Foo
|
|
|
|
WHERE(Trim(Str) = 'test')
|
|
|
|
WITH CHECK OPTION
|
2022-01-22 21:59:15 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
@pytest.mark.version('>=3')
|
|
|
|
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
|
|
|
|