~vadim-tk/percona-server/percona-galera-5.1.57

« back to all changes in this revision

Viewing changes to mysql-test/t/partition_federated.test

  • Committer: root
  • Date: 2011-07-10 16:09:24 UTC
  • Revision ID: root@r815.office.percona.com-20110710160924-fyffqsbaclgu6vui
Initial port

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Tests for partitioned FEDERATED
 
3
#
 
4
-- source include/have_partition.inc
 
5
-- source include/not_embedded.inc
 
6
-- source suite/federated/have_federated_db.inc
 
7
 
 
8
--disable_warnings
 
9
drop table if exists t1;
 
10
--enable_warnings
 
11
 
 
12
#
 
13
# Bug #22451 Partitions: duplicate results with engine=federated 
 
14
#
 
15
 
 
16
--error ER_PARTITION_MERGE_ERROR
 
17
create table t1 (s1 int) engine=federated
 
18
connection='mysql://root@localhost/federated/t1' partition by list (s1)
 
19
(partition p1 values in (1), partition p2 values in (2));
 
20
 
 
21
--echo End of 5.1 tests