~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-201203300109

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_geometry.test

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2011-11-08 11:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20111108113113-3ulw01fvi4vn8m25
Tags: upstream-5.5.17
ImportĀ upstreamĀ versionĀ 5.5.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
source include/master-slave.inc;
 
2
source include/have_binlog_format_row.inc;
 
3
 
 
4
#
 
5
# Bug#48776, Bug#43784
 
6
#
 
7
create table t1(a varchar(100),
 
8
                b multipoint not null,
 
9
                c varchar(256));
 
10
 
 
11
insert into t1 set
 
12
       a='hello',
 
13
       b=geomfromtext('multipoint(1 1)'),
 
14
       c='geometry';
 
15
 
 
16
create table t2 (a int(11) not null auto_increment primary key,
 
17
                 b geometrycollection default null,
 
18
                 c decimal(10,0));
 
19
 
 
20
insert into t2(c) values (null);
 
21
 
 
22
sync_slave_with_master;
 
23
 
 
24
connection master;
 
25
drop table t1, t2;
 
26
--source include/rpl_end.inc