Skip to content

Commit

Permalink
revert "logictest: deflake TestLogic_union"
Browse files Browse the repository at this point in the history
This reverts commit 6218f23.

I don't think this commit did anything to remove or reduce flakiness in
the union logic test because the error occurs on the SELECT query
_after_ the DDL and DML statements modified by this commit. Reverting it
to allow for cleaner backports.

Release note: None
  • Loading branch information
yuzefovich committed Oct 30, 2024
1 parent 7433edc commit 6db8137
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pkg/sql/logictest/testdata/logic_test/union
Original file line number Diff line number Diff line change
Expand Up @@ -683,15 +683,11 @@ SELECT a, b AS b1, b AS b2 FROM abc INTERSECT SELECT a, c, b FROM abc ORDER by a
# synchronizer was causing spurious errors on queries with LIMIT.
statement ok
CREATE TABLE t127043_1 (k1 INT, v1 INT, INDEX (k1));
CREATE TABLE t127043_2 (k2 INT, v2 INT, INDEX (k2));
CREATE TABLE t127043_3 (k3 INT, v3 INT, INDEX (k3));

statement ok
INSERT INTO t127043_1 VALUES (1, 1);
CREATE TABLE t127043_2 (k2 INT, v2 INT, INDEX (k2));
INSERT INTO t127043_2 VALUES (1, 1);
CREATE TABLE t127043_3 (k3 INT, v3 INT, INDEX (k3));
INSERT INTO t127043_3 VALUES (1, 1);

statement ok
CREATE VIEW v127043 (k, v) AS
SELECT
k1 AS k, v1 AS v FROM t127043_1@t127043_1_k1_idx
Expand Down

0 comments on commit 6db8137

Please sign in to comment.