-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Closed
Labels
bugConfirmed user-visible misbehaviour in official releaseConfirmed user-visible misbehaviour in official releasecomp-joinsJOINs, JOIN algorithms, JOIN optimizations.JOINs, JOIN algorithms, JOIN optimizations.crashCrash / segfault / abortCrash / segfault / abort
Description
I accidentally mistyped
(foo.a = bar.b) AND (foo.b = bar.b)
instead of
(foo.a = bar.a) AND (foo.b = bar.b)
ClickHouse client version 19.17.1.1553 (official build).
Connecting to localhost:9000 as user default.
Connected to ClickHouse server version 19.17.1 revision 54428.
SELECT *
FROM
(
SELECT
1 AS a,
2 AS b,
4 AS c
) AS foo
FULL OUTER JOIN
(
SELECT
1 AS a,
2 AS b,
3 AS c
) AS bar ON (foo.a = bar.b) AND (foo.b = bar.b)
Exception on client:
Code: 32. DB::Exception: Attempt to read after eof: while receiving packet from localhost:9000
Connecting to localhost:9000 as user default.
Code: 210. DB::NetException: Connection refused (localhost:9000)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugConfirmed user-visible misbehaviour in official releaseConfirmed user-visible misbehaviour in official releasecomp-joinsJOINs, JOIN algorithms, JOIN optimizations.JOINs, JOIN algorithms, JOIN optimizations.crashCrash / segfault / abortCrash / segfault / abort