summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/binlog/t/binlog_gis_user_var_stm.test
blob: 7e789cd7ae44db2d4dc9d649a260b3d0ae42939b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--source include/not_embedded.inc
--source include/have_binlog_format_statement.inc
--source include/have_geometry.inc

--disable_query_log
reset master; # get rid of previous tests binlog
--enable_query_log

SET @g0= POINT(1,1);
SET @g1= Polygon(LineString(Point(0, 0), Point(30, 0), Point(30, 30), Point(0, 0)));
CREATE TABLE t1 AS SELECT @g0 AS g0, @g1 AS g1;
DROP TABLE t1;

--let $binlog_file = LAST
source include/show_binlog_events.inc;