Commit 27f20d19 authored by Sergey Vojtovich's avatar Sergey Vojtovich

Updated test results

parent 8774a023
...@@ -128,7 +128,7 @@ show create table t3; ...@@ -128,7 +128,7 @@ show create table t3;
Table t3 Table t3
Create Table CREATE TABLE `t3` ( Create Table CREATE TABLE `t3` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT, `id` mediumint(9) NOT NULL AUTO_INCREMENT,
`dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `dt` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`user` char(255) DEFAULT NULL, `user` char(255) DEFAULT NULL,
`uuidf` longblob DEFAULT NULL, `uuidf` longblob DEFAULT NULL,
`fkid` mediumint(9) DEFAULT NULL, `fkid` mediumint(9) DEFAULT NULL,
......
...@@ -114,7 +114,7 @@ show create table test.byrange_tbl; ...@@ -114,7 +114,7 @@ show create table test.byrange_tbl;
Table byrange_tbl Table byrange_tbl
Create Table CREATE TABLE `byrange_tbl` ( Create Table CREATE TABLE `byrange_tbl` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT, `id` mediumint(9) NOT NULL AUTO_INCREMENT,
`dt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `dt` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`user` char(255) DEFAULT NULL, `user` char(255) DEFAULT NULL,
`uuidf` longblob DEFAULT NULL, `uuidf` longblob DEFAULT NULL,
`fkid` mediumint(9) DEFAULT NULL, `fkid` mediumint(9) DEFAULT NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment