INSERT INTO test_integer(int_1) VALUES(1); INSERT INTO test_integer(int_1) VALUES(256); INSERT INTO test_integer(int_1) VALUES(2147483647); INSERT INTO test_integer(int_1) VALUES(2147483648);
INSERT INTO test_integer(int_4) VALUES(1); INSERT INTO test_integer(int_4) VALUES(256); INSERT INTO test_integer(int_4) VALUES(2147483647); INSERT INTO test_integer(int_4) VALUES(2147483648);
INSERT INTO test_integer(int_8) VALUES(1); INSERT INTO test_integer(int_8) VALUES(256); INSERT INTO test_integer(int_8) VALUES(2147483647); INSERT INTO test_integer(int_8) VALUES(2147483648);
INSERT INTO test_integer(bigint_1) VALUES(1); INSERT INTO test_integer(bigint_1) VALUES(256); INSERT INTO test_integer(bigint_1) VALUES(9223372036854775807); INSERT INTO test_integer(bigint_1) VALUES(9223372036854775808);
INSERT INTO `test_date`(yearC) VALUES(1900); INSERT INTO `test_date`(yearC) VALUES(1901); INSERT INTO `test_date`(yearC) VALUES(2155); INSERT INTO `test_date`(yearC) VALUES(2156);
INSERT INTO `test_date`(dateC) VALUES("999-01-01"); INSERT INTO `test_date`(dateC) VALUES("1000-01-01"); INSERT INTO `test_date`(dateC) VALUES("9999-12-31"); INSERT INTO `test_date`(dateC) VALUES("10000-12-31");
INSERT INTO `test_date`(timeC) VALUES("-838:59:59"); INSERT INTO `test_date`(timeC) VALUES("838:59:59");
INSERT INTO `test_date`(datetimeC) VALUES("999-01-01 00:00:00"); INSERT INTO `test_date`(datetimeC) VALUES("1000-01-01 00:00:00"); INSERT INTO `test_date`(datetimeC) VALUES("9999-12-31 23:59:59"); INSERT INTO `test_date`(datetimeC) VALUES("10000-12-31 23:59:59");
INSERT INTO `test_date`(timestampC) VALUES("19690101080001"); INSERT INTO `test_date`(timestampC) VALUES("19700101080001"); INSERT INTO `test_date`(timestampC) VALUES("20380119111407"); INSERT INTO `test_date`(timestampC) VALUES("20390119111407");