1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-13 21:42:58 +03:00

Merge newbox:mysql-5.1-ppruning-r4

into  mysql.com:/home/psergey/mysql-5.1-26dec-merge
This commit is contained in:
unknown
2005-12-26 15:12:49 +03:00
4 changed files with 4 additions and 2 deletions

View File

@@ -223,6 +223,7 @@ insert into t3 values (1,1),(2,2),(3,3);
explain partitions select * from t3 where a=2 or b=1;
explain partitions select * from t3 where a=4 or b=2;
explain partitions select * from t3 where (a=2 or b=1) and (a=4 or b=2) ;
drop table t3;
# Test for NULLs
create table t1 (a int) partition by hash(a) partitions 2;

View File

@@ -2,7 +2,7 @@
# SQL Syntax for Prepared Statements test
#
--disable_warnings
drop table if exists t1,t2;
drop table if exists t1,t2,t3,t4;
# Avoid wrong warnings if mysql_client_test fails
drop database if exists client_test_db;