2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2022-01-21 18:49:26 +01:00
|
|
|
"""
|
|
|
|
ID: issue-2655
|
|
|
|
ISSUE: 2655
|
|
|
|
TITLE: Problem with column names with Accents and triggers
|
|
|
|
DESCRIPTION:
|
|
|
|
JIRA: CORE-2227
|
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-21 18:49:26 +01:00
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-21 18:49:26 +01:00
|
|
|
init_script = """
|
2021-04-26 20:07:00 +02:00
|
|
|
RECREATE TABLE TESTING (
|
|
|
|
"CÓDIGO" INTEGER
|
|
|
|
);
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-21 18:49:26 +01:00
|
|
|
db = db_factory(charset='ISO8859_1', init=init_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-21 18:49:26 +01:00
|
|
|
test_script = """
|
2021-04-26 20:07:00 +02:00
|
|
|
SET TERM ^;
|
|
|
|
CREATE TRIGGER TESTING_I FOR TESTING
|
|
|
|
ACTIVE BEFORE INSERT POSITION 0
|
|
|
|
AS
|
|
|
|
BEGIN
|
|
|
|
NEW."CÓDIGO" = 1;
|
|
|
|
END ^
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-21 18:49:26 +01:00
|
|
|
act = isql_act('db', test_script)
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-21 18:49:26 +01:00
|
|
|
@pytest.mark.version('>=3')
|
|
|
|
def test_1(act: Action):
|
|
|
|
try:
|
|
|
|
act.execute(charset='utf8')
|
|
|
|
except ExecutionError as e:
|
|
|
|
pytest.fail("Test script execution failed", pytrace=False)
|