You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ticket is a copy of the bug report VLC-1 for Vulcan. Test case:
recreate table T ( "VALUE" int ) ;
commit ;
delete from T where "VALUE" = 1;
-- OK
delete from T where value = 1 ;
-- ERROR: Illegal use of keyword VALUE
-- This is correct.
delete from T where value = ? ;
-- ERROR: Data type unknown (release build) or assertion failure (debug build)
-- There should be the same error as previously (Illegal use of keyword VALUE)
Submitted by: @dyemanov
Is related to QA341
This ticket is a copy of the bug report VLC-1 for Vulcan. Test case:
recreate table T ( "VALUE" int ) ;
commit ;
delete from T where "VALUE" = 1;
-- OK
delete from T where value = 1 ;
-- ERROR: Illegal use of keyword VALUE
-- This is correct.
delete from T where value = ? ;
-- ERROR: Data type unknown (release build) or assertion failure (debug build)
-- There should be the same error as previously (Illegal use of keyword VALUE)
Commits: 30f7cce
The text was updated successfully, but these errors were encountered: