diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-19 19:43:45 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-11-19 19:43:45 +0200 |
commit | e96234aa6bc24fa5f82d323f9f348c404916edc4 (patch) | |
tree | 7c11aeba638cda23719c35a8640d1b7772ccc7e3 /mysql-test/t/select_found.test | |
parent | a629adc6f956b0c7a279994085577a790e8156de (diff) | |
download | mariadb-git-e96234aa6bc24fa5f82d323f9f348c404916edc4.tar.gz |
fixed another small bug with LIMIT )
Diffstat (limited to 'mysql-test/t/select_found.test')
-rw-r--r-- | mysql-test/t/select_found.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/select_found.test b/mysql-test/t/select_found.test index b380c86d2db..316e7894344 100644 --- a/mysql-test/t/select_found.test +++ b/mysql-test/t/select_found.test @@ -90,4 +90,6 @@ SELECT SQL_CALC_FOUND_ROWS * FROM t1 WHERE numeropost > 1 LIMIT 0; SELECT FOUND_ROWS(); SELECT SQL_CALC_FOUND_ROWS * FROM t1 LIMIT 0; SELECT FOUND_ROWS(); +SELECT SQL_CALC_FOUND_ROWS * FROM t1 ORDER BY numeropost LIMIT 0; +SELECT FOUND_ROWS(); drop table t1; |