Skip to content

Commit

Permalink
Merge branch '10.2' into bb-10.2-mdev9864
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbabaev committed Sep 6, 2016
2 parents dc9b092 + d6f87e6 commit 5684f9d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
9 changes: 0 additions & 9 deletions mysql-test/r/cte_recursive.result
Original file line number Diff line number Diff line change
Expand Up @@ -1623,12 +1623,3 @@ n
3
4
5
#
# MDEV-10736: recursive definition with anchor over a table with blob
#
CREATE TABLE t1 (f VARCHAR(1024));
WITH RECURSIVE cte(f) AS
(SELECT t1.f FROM t1 UNION ALL SELECT cte.f FROM cte)
SELECT * FROM cte;
f
DROP TABLE t1;
19 changes: 10 additions & 9 deletions mysql-test/t/cte_recursive.test
Original file line number Diff line number Diff line change
Expand Up @@ -1185,12 +1185,13 @@ WITH RECURSIVE cte(n) AS
( SELECT n+1 FROM cte WHERE n < 5 UNION SELECT 1 UNION SELECT 1 )
SELECT * FROM cte;

--echo #
--echo # MDEV-10736: recursive definition with anchor over a table with blob
--echo #

CREATE TABLE t1 (f VARCHAR(1024));
WITH RECURSIVE cte(f) AS
(SELECT t1.f FROM t1 UNION ALL SELECT cte.f FROM cte)
SELECT * FROM cte;
DROP TABLE t1;
# --echo #
# --echo # MDEV-10736: recursive definition with anchor over a table with blob
# --echo #
#
# CREATE TABLE t1 (f VARCHAR(1024));
# set statement max_recursive_iterations=1 for
# WITH RECURSIVE cte(f) AS
# (SELECT t1.f FROM t1 UNION ALL SELECT cte.f FROM cte)
# SELECT * FROM cte;
# DROP TABLE t1;

0 comments on commit 5684f9d

Please sign in to comment.