diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-19 17:20:57 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-19 17:20:57 +0200 |
commit | 9705257270b28757eec9aac63f664a93dd5ac601 (patch) | |
tree | c5900d127968874cc7836f11042f20504d1ef658 /mysql-test/r/select_found.result | |
parent | 10de2720aa9de78b461ef4eac1cf45f395994350 (diff) | |
download | mariadb-git-9705257270b28757eec9aac63f664a93dd5ac601.tar.gz |
Makng sure that LIMIT 0 works in this case to:
select sql_calc_found_rows * from table limit 0;
It does ...
Diffstat (limited to 'mysql-test/r/select_found.result')
-rw-r--r-- | mysql-test/r/select_found.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/select_found.result b/mysql-test/r/select_found.result index bbf0a8ba09f..a48e1e16d37 100644 --- a/mysql-test/r/select_found.result +++ b/mysql-test/r/select_found.result @@ -178,4 +178,9 @@ titre numeropost maxnumrep SELECT FOUND_ROWS(); FOUND_ROWS() 2 +SELECT SQL_CALC_FOUND_ROWS * FROM t1 LIMIT 0; +titre numeropost maxnumrep +SELECT FOUND_ROWS(); +FOUND_ROWS() +3 drop table t1; |