mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
06641fd079
run-all-tests mysql-test -> mysqltest README mysql-test -> mysqltest Makefile.am Retargetted mysql-test to mysqltest. .del-mysql-test.c Delete: client/mysql-test.c mysql-test-run Added program definitions. mysqltest.c BitKeeper file /home/mwagner/work/bk/mysql/client/mysqltest.c
17 lines
466 B
Text
17 lines
466 B
Text
#! ../client/mysqltest
|
|
# tests if the replicaion preserves timestamp properly
|
|
|
|
source ../include/master-slave.inc;
|
|
connection master;
|
|
set timestamp=200006;
|
|
drop table if exists foo;
|
|
create table foo(t timestamp not null,a char(1));
|
|
insert into foo ( a) values ('F');
|
|
@repl-timestamp.master select unix_timestamp(t) from foo;
|
|
sleep 3;
|
|
connection slave;
|
|
drop table if exists foo;
|
|
load table foo from master;
|
|
@repl-timestamp.master select unix_timestamp(t) from foo;
|
|
|
|
|