Fixed test case for UUID_ dictionary attribute.

This commit is contained in:
Vasily Nemkov 2018-10-25 07:42:02 +03:00
parent 8aa0c423aa
commit 7ebc44a0c8

View File

@ -303,7 +303,7 @@ def generate_data(args):
'UInt8_ tinyint unsigned, UInt16_ smallint unsigned, UInt32_ int unsigned, UInt64_ bigint unsigned, '
'Int8_ tinyint, Int16_ smallint, Int32_ int, Int64_ bigint, '
'Float32_ float, Float64_ double, '
'String_ text, Date_ date, DateTime_ datetime, Parent bigint unsigned, UUID_ varchar(36)'
'String_ text, Date_ date, DateTime_ datetime, UUID_ varchar(36)'
');'
'load data local infile \'{0}/generated/{file}\' into table {table_name};" | mysql $MYSQL_OPTIONS --local-infile=1'
.format(prefix, table_name=table_name, col_type=col_type, file=file), shell=True)