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 crash when executing the right shift operator, this crash can be reproduce stabily.
Note: we need to executing the following commands quickly. To reproduce, you can copy paste the following code:
CREATETABLEt0(c0 INT);
INSERT INTO t0(c0) VALUE (DEFAULT);
DELETEFROM t0 WHERE ((t0.c0)>>(t0.c0));
-- note: to reproduce the crash, need to run all commands quickly. Copy this line to let all commands run quickly
Expected behavior
Do not crash
How To Reproduce
DROPDATABASE IF EXISTS database5;
CREATEDATABASEdatabase5;
USE database5;
CREATETABLEt0(c0 INT);
INSERT INTO t0(c0) VALUE (DEFAULT);
DELETEFROM t0 WHERE ((t0.c0)>>(t0.c0));
-- note: to reproduce the crash, need to run all commands quickly. Copy this line to let all commands run quickly
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 crash when executing the right shift operator, this crash can be reproduce stabily.
Note: we need to executing the following commands quickly. To reproduce, you can copy paste the following code:
Expected behavior
Do not crash
How To Reproduce
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: