stonedb icon indicating copy to clipboard operation
stonedb copied to clipboard

bug: query result wrong: SELECT

Open ZhengLin-Li opened this issue 11 months ago • 0 comments

Have you read the Contributing Guidelines on issues?

Please confirm if bug report does NOT exists already ?

  • [X] I confirm there is no existing issue for this

Describe the problem

The query result does not meet expectation

StoneDB V1.0.4 Result

image

MySQL 5.7 Result

image

Expected behavior

No response

How To Reproduce

CREATE TABLE t0(c0 TEXT);
INSERT INTO t0(c0) VALUES (DEFAULT);
DELETE FROM t0;
INSERT INTO t0(c0) VALUES (DEFAULT);

SELECT * FROM t0;

Environment

Docker V1.0.4

Are you interested in submitting a PR to solve the problem?

  • [ ] Yes, I will!

ZhengLin-Li avatar Jul 19 '23 01:07 ZhengLin-Li