mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
16 lines
444 B
Plaintext
16 lines
444 B
Plaintext
--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;
|