mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 04:46:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
include/master-slave.inc
 | 
						|
[connection master]
 | 
						|
set timestamp=1656940000;
 | 
						|
set explicit_defaults_for_timestamp=!@@explicit_defaults_for_timestamp;
 | 
						|
Warnings:
 | 
						|
Warning	1287	'explicit_defaults_for_timestamp=0' is deprecated and will be removed in a future release
 | 
						|
connection master;
 | 
						|
create table t1 (f1 timestamp, f2 timestamp);
 | 
						|
show create table t1;
 | 
						|
Table	Create Table
 | 
						|
t1	CREATE TABLE `t1` (
 | 
						|
  `f1` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
 | 
						|
  `f2` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
 | 
						|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
 | 
						|
connection slave;
 | 
						|
show create table t1;
 | 
						|
Table	Create Table
 | 
						|
t1	CREATE TABLE `t1` (
 | 
						|
  `f1` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
 | 
						|
  `f2` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
 | 
						|
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
 | 
						|
connection master;
 | 
						|
drop table t1;
 | 
						|
flush binary logs;
 | 
						|
/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
 | 
						|
/*!40019 SET @@session.max_delayed_threads=0*/;
 | 
						|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
 | 
						|
DELIMITER /*!*/;
 | 
						|
ROLLBACK/*!*/;
 | 
						|
use `test`/*!*/;
 | 
						|
SET TIMESTAMP=1656940000/*!*/;
 | 
						|
SET @@session.pseudo_thread_id=999999999/*!*/;
 | 
						|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1, @@session.check_constraint_checks=1, @@session.sql_if_exists=0, @@session.explicit_defaults_for_timestamp=0, @@session.system_versioning_insert_history=0/*!*/;
 | 
						|
SET @@session.sql_mode=1411383296/*!*/;
 | 
						|
SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
 | 
						|
/*!\C latin1 *//*!*/;
 | 
						|
SET @@session.character_set_client=latin1,@@session.collation_connection=8,@@session.collation_server=2304/*!*/;
 | 
						|
SET @@session.lc_time_names=0/*!*/;
 | 
						|
SET @@session.collation_database=DEFAULT/*!*/;
 | 
						|
create table t1 (f1 timestamp, f2 timestamp)
 | 
						|
/*!*/;
 | 
						|
SET TIMESTAMP=1656940000/*!*/;
 | 
						|
DROP TABLE `t1` /* generated by server */
 | 
						|
/*!*/;
 | 
						|
DELIMITER ;
 | 
						|
# End of log file
 | 
						|
ROLLBACK /* added by mysqlbinlog */;
 | 
						|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
 | 
						|
/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
 | 
						|
include/rpl_end.inc
 |