mirror of
https://github.com/MariaDB/server.git
synced 2025-11-13 21:42:58 +03:00
merge
sql/mysql_priv.h: Auto merged sql/sql_select.cc: Auto merged
This commit is contained in:
@@ -103,3 +103,16 @@ check table t1;
|
||||
analyze table t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# The following crashed gis
|
||||
#
|
||||
|
||||
CREATE TABLE t1 (
|
||||
fid INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||||
g GEOMETRY NOT NULL,
|
||||
SPATIAL KEY(g)
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
INSERT INTO t1 (g) VALUES (GeomFromText('LineString(1 2, 2 3)')),(GeomFromText('LineString(1 2, 2 4)'));
|
||||
#select * from t1 where g<GeomFromText('LineString(1 2, 2 3)');
|
||||
drop table t1;
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user