1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixes for offset bug in UNION's and making UNION's obey

SELECT_DEFAULT_LIMIT


Docs/manual.texi:
  Monty  forced me  to do this
This commit is contained in:
unknown
2002-03-22 13:26:13 +02:00
parent d62d98de7c
commit f34e7d709b
4 changed files with 28 additions and 1 deletions

View File

@ -177,4 +177,14 @@ a
11
12
13
(select * from t1 limit 2) union (select * from t2 limit 20,3);
a
1
2
set SQL_SELECT_LIMIT=2;
(select * from t1 limit 2) union (select * from t2 limit 3);
a
1
2
set SQL_SELECT_LIMIT=DEFAULT;
drop table t1,t2;