File: rpl_hrtime_row.result

package info (click to toggle)
mariadb 1%3A11.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 765,428 kB
  • sloc: ansic: 2,382,827; cpp: 1,803,532; asm: 378,315; perl: 63,176; sh: 46,496; pascal: 40,776; java: 39,363; yacc: 20,428; python: 19,506; sql: 17,864; xml: 12,463; ruby: 8,544; makefile: 6,059; cs: 5,855; ada: 1,700; lex: 1,193; javascript: 1,039; objc: 80; tcl: 73; awk: 46; php: 22
file content (31 lines) | stat: -rw-r--r-- 1,379 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
include/master-slave.inc
[connection master]
set time_zone='+03:00';
set timestamp=unix_timestamp('2011-01-01 01:01:01') + 0.123456;
create table t1 (a timestamp(4) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, b varchar(100), c datetime(2));
insert t1 (b,c) values (now(6), now(6));
insert t1 values ('2010-10-10 10:10:10.101010','2010-10-10 10:10:10.101010','2010-10-10 10:10:10.101010');
set timestamp=unix_timestamp('2022-02-02 02:02:02') + 0.654321;
insert t1 (b,c) values (now(), now());
insert t1 (b,c) values (0,0);
insert t1 (a,b,c) values (0,0,now(6));
select * from t1;
a	b	c
2011-01-01 01:01:01.1234	2011-01-01 01:01:01.123456	2011-01-01 01:01:01.12
2010-10-10 10:10:10.1010	2010-10-10 10:10:10.101010	2010-10-10 10:10:10.10
2022-02-02 02:02:02.6543	2022-02-02 02:02:02	2022-02-02 02:02:02.00
2022-02-02 02:02:02.6543	0	0000-00-00 00:00:00.00
0000-00-00 00:00:00.0000	0	2022-02-02 02:02:02.65
connection slave;
connection slave;
set time_zone='+03:00';
select * from t1;
a	b	c
2011-01-01 01:01:01.1234	2011-01-01 01:01:01.123456	2011-01-01 01:01:01.12
2010-10-10 10:10:10.1010	2010-10-10 10:10:10.101010	2010-10-10 10:10:10.10
2022-02-02 02:02:02.6543	2022-02-02 02:02:02	2022-02-02 02:02:02.00
2022-02-02 02:02:02.6543	0	0000-00-00 00:00:00.00
0000-00-00 00:00:00.0000	0	2022-02-02 02:02:02.65
connection master;
drop table t1;
include/rpl_end.inc