MXS-2265: Extend datatype test case

Added zero date testing.
This commit is contained in:
Markus Mäkelä
2019-02-05 12:54:03 +02:00
parent 3a40faf77d
commit 554f1cc41c

View File

@ -107,6 +107,7 @@ static const char* datetime_types[] =
static const char* datetime_values[] = static const char* datetime_values[] =
{ {
"'2018-01-01 11:11:11'", "'2018-01-01 11:11:11'",
"'0-00-00 00:00:00'",
"NULL", "NULL",
NULL NULL
}; };
@ -120,6 +121,7 @@ static const char* date_types[] =
static const char* date_values[] = static const char* date_values[] =
{ {
"'2018-01-01'", "'2018-01-01'",
"'0-00-00'",
"NULL", "NULL",
NULL NULL
}; };