-
-
Notifications
You must be signed in to change notification settings - Fork 233
Table columns hide destination variables of RETURNING INTO [CORE1256] #703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Modified by: @pcisarVersion: 2.0.2 [ 10130 ] => |
Commented by: @pcisar I have created a test according to your specification, but I can't reproduce the bug with 2.0.1 and 2.1 Alpha 1. They return 1 like 2.1 Beta 1. I can't close it until we'll clarify it as either test case or Affected version definition is wrong. |
Commented by: @asfernandes Because you wrote the test using the first statement (into :n)... |
Commented by: @pcisar Fix verified for 2.1 Beta 1, test added. |
Modified by: @pcisarstatus: Resolved [ 5 ] => Closed [ 6 ] |
Modified by: @pcisarWorkflow: jira [ 12090 ] => Firebird [ 15566 ] |
Modified by: @pavel-zotovQA Status: No test |
Modified by: @pavel-zotovQA Status: No test => Done successfully |
Submitted by: @asfernandes
Is related to QA146
SQL> create table t (n integer)!
SQL>
SQL> -- ok
SQL> execute block returns (n integer)
CON> as
CON> begin
CON> insert into t values (1) returning n into :n;
CON> suspend;
CON> end!
============
1
SQL> -- not ok
SQL> execute block returns (n integer)
CON> as
CON> begin
CON> insert into t values (1) returning n into n;
CON> suspend;
CON> end!
============
<null>
Commits: bf89534
The text was updated successfully, but these errors were encountered: