config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/rpl/r/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/r/rpl_function_defaults.result

#
# Test of function defaults on replicated tables.
#
include/master-slave.inc
Warnings:
Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
Note	####	Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
[connection master]
connection master
SET TIME_ZONE="+10:30";
SET TIMESTAMP=123456.789123;
SELECT CURRENT_TIMESTAMP;
CURRENT_TIMESTAMP
1970-01-02 20:47:36
connection slave
SET TIME_ZONE="+00:00";
SET TIMESTAMP=987654321.123456;
SELECT CURRENT_TIMESTAMP;
CURRENT_TIMESTAMP
2001-04-19 04:25:21
connection master
CREATE TABLE t1 (
a TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP,
b TIMESTAMP(1) NOT NULL DEFAULT CURRENT_TIMESTAMP(1),
c TIMESTAMP(2) NOT NULL DEFAULT CURRENT_TIMESTAMP(2),
d TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
e TIMESTAMP(4) NOT NULL DEFAULT CURRENT_TIMESTAMP(4),
f TIMESTAMP(5) NOT NULL DEFAULT CURRENT_TIMESTAMP(5),
g TIMESTAMP(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
h DATETIME     DEFAULT CURRENT_TIMESTAMP,
i DATETIME(1)  DEFAULT CURRENT_TIMESTAMP(1),
j DATETIME(2)  DEFAULT CURRENT_TIMESTAMP(2),
k DATETIME(3)  DEFAULT CURRENT_TIMESTAMP(3),
l DATETIME(4)  DEFAULT CURRENT_TIMESTAMP(4),
m DATETIME(5)  DEFAULT CURRENT_TIMESTAMP(5),
n DATETIME(6)  DEFAULT CURRENT_TIMESTAMP(6),
o INT
);
INSERT INTO t1 ( o ) VALUES ( 1 );
SET sql_mode = 'NO_ENGINE_SUBSTITUTION';
Warnings:
Warning	3090	Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release.
CREATE TABLE t2 (
a TIMESTAMP    NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
b TIMESTAMP(1) NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP(1),
c TIMESTAMP(2) NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP(2),
d TIMESTAMP(3) NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP(3),
e TIMESTAMP(4) NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP(4),
f TIMESTAMP(5) NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP(5),
g TIMESTAMP(6) NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP(6),
h DATETIME     ON UPDATE CURRENT_TIMESTAMP,
i DATETIME(1)  ON UPDATE CURRENT_TIMESTAMP(1),
j DATETIME(2)  ON UPDATE CURRENT_TIMESTAMP(2),
k DATETIME(3)  ON UPDATE CURRENT_TIMESTAMP(3),
l DATETIME(4)  ON UPDATE CURRENT_TIMESTAMP(4),
m DATETIME(5)  ON UPDATE CURRENT_TIMESTAMP(5),
n DATETIME(6)  ON UPDATE CURRENT_TIMESTAMP(6),
o INT
);
SET sql_mode = default;
INSERT INTO t2 ( o ) VALUES ( 1 );
sync_slave_with_master
include/sync_slave_sql_with_master.inc
connection slave
SELECT * FROM t1;
a	1970-01-02 10:17:36
b	1970-01-02 10:17:36.7
c	1970-01-02 10:17:36.78
d	1970-01-02 10:17:36.789
e	1970-01-02 10:17:36.7891
f	1970-01-02 10:17:36.78912
g	1970-01-02 10:17:36.789123
h	1970-01-02 20:47:36
i	1970-01-02 20:47:36.7
j	1970-01-02 20:47:36.78
k	1970-01-02 20:47:36.789
l	1970-01-02 20:47:36.7891
m	1970-01-02 20:47:36.78912
n	1970-01-02 20:47:36.789123
o	1
SELECT * FROM t2;
a	0000-00-00 00:00:00
b	0000-00-00 00:00:00.0
c	0000-00-00 00:00:00.00
d	0000-00-00 00:00:00.000
e	0000-00-00 00:00:00.0000
f	0000-00-00 00:00:00.00000
g	0000-00-00 00:00:00.000000
h	NULL
i	NULL
j	NULL
k	NULL
l	NULL
m	NULL
n	NULL
o	1
connection master
SET TIMESTAMP=1234567890.123456;
SELECT CURRENT_TIMESTAMP;
CURRENT_TIMESTAMP
2009-02-14 10:01:30
UPDATE t1 SET o = 2;
UPDATE t2 SET o = 2;
sync_slave_with_master
include/sync_slave_sql_with_master.inc
connection slave
SELECT * FROM t1;
a	1970-01-02 10:17:36
b	1970-01-02 10:17:36.7
c	1970-01-02 10:17:36.78
d	1970-01-02 10:17:36.789
e	1970-01-02 10:17:36.7891
f	1970-01-02 10:17:36.78912
g	1970-01-02 10:17:36.789123
h	1970-01-02 20:47:36
i	1970-01-02 20:47:36.7
j	1970-01-02 20:47:36.78
k	1970-01-02 20:47:36.789
l	1970-01-02 20:47:36.7891
m	1970-01-02 20:47:36.78912
n	1970-01-02 20:47:36.789123
o	2
SELECT * FROM t2;
a	2009-02-13 23:31:30
b	2009-02-13 23:31:30.1
c	2009-02-13 23:31:30.12
d	2009-02-13 23:31:30.123
e	2009-02-13 23:31:30.1234
f	2009-02-13 23:31:30.12345
g	2009-02-13 23:31:30.123456
h	2009-02-14 10:01:30
i	2009-02-14 10:01:30.1
j	2009-02-14 10:01:30.12
k	2009-02-14 10:01:30.123
l	2009-02-14 10:01:30.1234
m	2009-02-14 10:01:30.12345
n	2009-02-14 10:01:30.123456
o	2
connection master
DROP TABLE t1, t2;
include/rpl_end.inc

Man Man