Details
-
Bug
-
Status: Confirmed (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.11, 11.4, 11.8, 12.3
-
None
Description
CREATE TABLE t1 (a DECIMAL); |
INSERT INTO t1 VALUES (100); |
SELECT a INTO @aaa FROM t1; |
DROP TABLE t1; |
|
|
SELECT @aaa; |
Results differs in case the test is run with and without the option cursor-protocol
In case the test is run with the option cursor-protocol the test fails with the following diff
@@ -4,4 +4,4 @@
|
DROP TABLE t1;
|
SELECT @aaa;
|
@aaa
|
-100
|
+100.00000000000000000000000000000000000000
|
|
|
Result length mismatch
|