Submitted by: Rui Cruz (rmgdc)
Is related to QA241
Triggers don't recognize column names with accents.
Test case:
/* ---------- x ---------------- */
RECREATE TABLE TESTING (
"CÓDIGO" INTEGER
);
SET TERM §;
CREATE TRIGGER TESTING_I FOR TESTING
ACTIVE BEFORE INSERT POSITION 0
AS
BEGIN
NEW."CÓDIGO" = 1;
END§
/* ---------- x ---------------- */
This gives the following error:
ISC ERROR CODE:335544343
ISC ERROR MESSAGE:
invalid request BLR at offset 22
column CÓDIGO is not defined in table TESTING
Commits: a1628d1 41b4b3a
Submitted by: Rui Cruz (rmgdc)
Is related to QA241
Triggers don't recognize column names with accents.
Test case:
/* ---------- x ---------------- */
RECREATE TABLE TESTING (
"CÓDIGO" INTEGER
);
SET TERM §;
CREATE TRIGGER TESTING_I FOR TESTING
ACTIVE BEFORE INSERT POSITION 0
AS
BEGIN
NEW."CÓDIGO" = 1;
END§
/* ---------- x ---------------- */
This gives the following error:
ISC ERROR CODE:335544343
ISC ERROR MESSAGE:
invalid request BLR at offset 22
column CÓDIGO is not defined in table TESTING
Commits: a1628d1 41b4b3a