-
-
Notifications
You must be signed in to change notification settings - Fork 624
Closed
dolthub/go-mysql-server
#3371Labels
analyzerbugSomething isn't workingSomething isn't workingcorrectnessWe don't return the same result as MySQLWe don't return the same result as MySQLcustomer issue
Description
Dear Dolt Developers,
I encountered an unexpected execution result in Dolt and would greatly appreciate it if you could take a look. Let's make concerted efforts in enhancing the robustness of Dolt. Thank you very much!
CREATE TABLE t0(c0 BOOLEAN, c1 INT, PRIMARY KEY(c0));
CREATE TABLE t1(c0 BOOLEAN, c1 VARCHAR(500), PRIMARY KEY(c0));
INSERT INTO t1(c1, c0) VALUES (NULL, true);
INSERT INTO t0(c0, c1) VALUES (true, 4);
SELECT * FROM t1 NATURAL FULL JOIN t0;
-- 1, 4
SELECT /*+ MERGE_JOIN(t0, t1)*/ * FROM t1 NATURAL FULL JOIN t0;
-- Empty ResultCommit: ed7ddc5
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
analyzerbugSomething isn't workingSomething isn't workingcorrectnessWe don't return the same result as MySQLWe don't return the same result as MySQLcustomer issue