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
Please confirm if bug report does NOT exists already ?
I confirm there is no existing issue for this
Describe the problem
StoneDB V1.0.4 crash when running the following commands:
EXAMPLE 1:
EXAMPLE 2:
EXAMPLE 3:
(Have tried to reduce the statements as fewer as possible)
Expected behavior
EXAMPLE 1:
Return NULL as MySQL 5.7 does:
EXAMPLE 2:
Return NULL as MySQL 5.7 does:
EXAMPLE 3:
Return NULL as MySQL 5.7 does:
How To Reproduce
EXAMPLE 1:
CREATETABLEt0(c0 INT);
INSERT INTO t0(c0) VALUES (1);
ALTERTABLE t0 CHANGE COLUMN c0 c1 INT;
CREATETABLEt1(c0 INT);
SELECTSUM(count1) FROM (SELECT CAST(t0.c1AS UNSIGNED) as count1 FROM t0, t1) as res;
EXAMPLE 2:
CREATETABLEt0(c0 INT);
CREATETABLEt1(c0 INT) ;
INSERT INTO t1(c0) VALUES (111);
SELECTSUM(count1) FROM (SELECT CAST(t1.c0AS UNSIGNED) as count1 FROM t1, t0) as res;
EXAMPLE 3:
CREATETABLEt0(c1 INT );
CREATETABLEt1(c0 INT );
INSERT INTO t0(c1) VALUES (1);
SELECTSUM(count1) FROM (SELECT CAST(t0.c1AS UNSIGNED) as count1 FROM t0, t1) as res;
Environment
Docker image V1.0.4
Are you interested in submitting a PR to solve the problem?
Yes, I will!
The text was updated successfully, but these errors were encountered:
Have you read the Contributing Guidelines on issues?
Please confirm if bug report does NOT exists already ?
Describe the problem
StoneDB V1.0.4 crash when running the following commands:
EXAMPLE 1:
EXAMPLE 2:
EXAMPLE 3:
(Have tried to reduce the statements as fewer as possible)
Expected behavior
EXAMPLE 1:
Return
NULL
as MySQL 5.7 does:EXAMPLE 2:
Return
NULL
as MySQL 5.7 does:EXAMPLE 3:
Return
NULL
as MySQL 5.7 does:How To Reproduce
EXAMPLE 1:
EXAMPLE 2:
EXAMPLE 3:
Environment
Docker image V1.0.4
Are you interested in submitting a PR to solve the problem?
The text was updated successfully, but these errors were encountered: