Add DEFAULT CURRENT_TIMESTAMP to deadlocks table to prevent ON UPDATE DEFAULT CURRENT_TIMESTAMP.

This commit is contained in:
Daniel Nichter
2014-05-29 17:42:55 -07:00
parent 9c15cef84f
commit 4c92806276

View File

@@ -5214,7 +5214,7 @@ MAGIC_dest_table
CREATE TABLE deadlocks (
server char(20) NOT NULL,
ts timestamp NOT NULL,
ts timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
thread int unsigned NOT NULL,
txn_id bigint unsigned NOT NULL,
txn_time smallint unsigned NOT NULL,