Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
5.6.1
-
None
-
None
Description
CREATE DATABASE transportation;
|
CREATE TABLE transportation.bus_routes (origin varchar(50), dst varchar(50)) engine=columnstore; |
INSERT INTO transportation.bus_routes VALUES
|
('New York', 'Boston'), |
('Boston', 'New York'), |
('New York', 'Washington'), |
('Washington', 'Boston'), |
('Washington', 'Raleigh'); |
WITH RECURSIVE bus_dst as (
|
SELECT origin as dst FROM transportation.bus_routes WHERE origin='New York' |
UNION
|
SELECT bus_routes.dst FROM transportation.bus_routes JOIN bus_dst ON bus_dst.dst= bus_routes.origin
|
)
|
SELECT * FROM bus_dst;
|
ERROR 2006 (HY000): MySQL server has gone away
Attachments
Issue Links
Activity
Field | Original Value | New Value |
---|---|---|
Rank | Ranked higher |
Rank | Ranked higher |
Assignee | Gagan Goel [ tntnatbry ] |
Rank | Ranked higher |
Description |
{code:java} CREATE DATABASE transportation; CREATE TABLE transportation.bus_routes (origin varchar(50), dst varchar(50)) engine=columnstore; INSERT INTO transportation.bus_routes VALUES ('New York', 'Boston'), ('Boston', 'New York'), ('New York', 'Washington'), ('Washington', 'Boston'), ('Washington', 'Raleigh'); WITH RECURSIVE bus_dst as ( SELECT origin as dst FROM transportation.bus_routes WHERE origin='New York' UNION SELECT bus_routes.dst FROM transportation.bus_routes JOIN bus_dst ON bus_dst.dst= bus_routes.origin ) SELECT * FROM bus_dst; {code} {color:#DE350B}ERROR 2006 (HY000): MySQL server has gone away{color} |
{code:java}
CREATE DATABASE transportation; CREATE TABLE transportation.bus_routes (origin varchar(50), dst varchar(50)) engine=columnstore; INSERT INTO transportation.bus_routes VALUES ('New York', 'Boston'), ('Boston', 'New York'), ('New York', 'Washington'), ('Washington', 'Boston'), ('Washington', 'Raleigh'); WITH RECURSIVE bus_dst as ( SELECT origin as dst FROM transportation.bus_routes WHERE origin='New York' UNION SELECT bus_routes.dst FROM transportation.bus_routes JOIN bus_dst ON bus_dst.dst= bus_routes.origin ) SELECT * FROM bus_dst; {code} {color:#DE350B}ERROR 2006 (HY000): MySQL server has gone away{color} |
Fix Version/s | 6.3.1 [ 25801 ] | |
Fix Version/s | 6.2.1 [ 26035 ] |
Assignee | Gagan Goel [ tntnatbry ] | Alexey Antipovsky [ JIRAUSER47594 ] |
Fix Version/s | 6.4.1 [ 26046 ] |
Fix Version/s | 6.3.1 [ 25801 ] |
Fix Version/s | 22.08 [ 26904 ] | |
Fix Version/s | 6.4.1 [ 26046 ] |
Labels | digicert |
Assignee | Alexey Antipovsky [ JIRAUSER47594 ] | Roman [ drrtuy ] |
Assignee | Roman [ drrtuy ] | Denis Khalikov [ JIRAUSER48434 ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Summary | Recursive CTE Crashing MariaDB | Recursive CTE Crashing MariaDB - fix crash produce err |
Fix Version/s | 6.4.1 [ 26046 ] | |
Fix Version/s | 22.08 [ 26904 ] |
Assignee | Denis Khalikov [ JIRAUSER48434 ] | David Hall [ david.hall ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Status | In Review [ 10002 ] | In Testing [ 10301 ] |
Assignee | David Hall [ david.hall ] | Daniel Lee [ dleeyh ] |
Resolution | Fixed [ 1 ] | |
Status | In Testing [ 10301 ] | Closed [ 6 ] |
Assignee | Daniel Lee [ dleeyh ] | Sergey Zefirov [ JIRAUSER47362 ] |
Labels | digicert |
Zendesk Related Tickets | 140464 113621 |