diff options
author | unknown <monty@mysql.com> | 2004-04-08 13:58:06 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-04-08 13:58:06 +0300 |
commit | 16845a71aa333bd43522a90652c87dcd953f9191 (patch) | |
tree | a2db2fbae50b0568aeaf80c5eb2dbb8027359da4 /mysql-test/t/grant.test | |
parent | 3cb13f7926334b6542d46d6a78c8aadeb1aefcc8 (diff) | |
download | mariadb-git-16845a71aa333bd43522a90652c87dcd953f9191.tar.gz |
Moved reading of ranges from opt_range.cc to handler.cc
This gives the handler more optimization possiblities and is needed for NDB cluster
Fixed not-initialized memory error detected by valgrind
mysql-test/mysql-test-run.sh:
Fixed address to manual page
mysql-test/r/gis-rtree.result:
Added test to show fatal error in GIS
mysql-test/r/grant.result:
New tests
mysql-test/t/gis-rtree.test:
New tests
mysql-test/t/grant.test:
New tests
sql/handler.cc:
Moved reading of ranges from opt_range.cc to handler.cc
This gives the handler more optimization possiblities and is needed for NDB cluster
sql/handler.h:
Moved reading of ranges from opt_range.cc to handler.cc
T
sql/opt_range.cc:
Moved reading of ranges from opt_range.cc to handler.cc
Simplified GIS get_next() handling
Indentation cleanups
sql/opt_range.h:
Removed not needed cmp_next()
Added new QUICK_SELECT method for GIS keys to make code for normal keys easier and faster
sql/sql_select.cc:
Fixed wrong handling of usable-keys in test_if_skip_sort_order (not fatal, just a warning from valgrind)
Added DBUG
Cleaned up comments
Diffstat (limited to 'mysql-test/t/grant.test')
-rw-r--r-- | mysql-test/t/grant.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/grant.test b/mysql-test/t/grant.test index 326759cb9ca..832541b0f86 100644 --- a/mysql-test/t/grant.test +++ b/mysql-test/t/grant.test @@ -53,6 +53,8 @@ delete from mysql.db where user='mysqltest_1'; delete from mysql.tables_priv where user='mysqltest_1'; delete from mysql.columns_priv where user='mysqltest_1'; flush privileges; +--error 1141 +show grants for mysqltest_1@localhost; # # Test what happens when you have same table and colum level grants |