diff options
author | Sinisa@sinisa.nasamreza.org <> | 2002-11-19 19:43:45 +0200 |
---|---|---|
committer | Sinisa@sinisa.nasamreza.org <> | 2002-11-19 19:43:45 +0200 |
commit | 20e100d3b3226566a70f49f3f960bcd8154a0ebe (patch) | |
tree | 7c11aeba638cda23719c35a8640d1b7772ccc7e3 /mysql-test/t/select_found.test | |
parent | 771af76c90dde0cd0001539b7e5550b5f69e85c4 (diff) | |
download | mariadb-git-20e100d3b3226566a70f49f3f960bcd8154a0ebe.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; |