1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

5.3->5.5 merge

This commit is contained in:
Sergei Golubchik
2011-11-22 18:04:38 +01:00
394 changed files with 17631 additions and 3357 deletions

View File

@ -6,7 +6,7 @@
#
--disable_warnings
drop table if exists t1;
drop table if exists t1,t2,t3;
--enable_warnings
#
@ -124,6 +124,13 @@ drop table t1;
--exec echo "use" > $file
--exec $MYSQL < $file 2>&1
# Test exceutable comments
--exec echo "SELECT 1 /*! +1 */;" > $file
--exec echo "SELECT 1 /*M! +1 */;" >> $file
--exec echo "SELECT 1 /*!00000 +1 */;" >> $file
--exec echo "SELECT 1 /*M!00000 +1 */" >> $file
--exec $MYSQL < $file 2>&1
--remove_file $file
#