forked from bradzacher/mysqldump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.sql
1 lines (1 loc) · 1.08 KB
/
data.sql
1
INSERT INTO `data_types` (`id`,`_int`,`_tinyint`,`_smallint`,`_mediumint`,`_bigint`,`_decimal`,`_double`,`_float`,`_real`,`_varchar`,`_char`,`_blob`,`_binary`,`_varbinary`,`_date`,`_datetime`,`_time`,`_timestamp`,`_year`,`_point`,`_linestring`,`_polygon`,`_multipoint`,`_multilinestring`,`_multipolygon`,`_geometrycollection`,`_text`,`_bit`,`_enum`,`_set`) VALUES (1,1,2,255,65000,1000000,9999.99,3.141592653589793,3.14159,3.141592653589793,'hello','x',X'1234',X'ff',X'abcdef','2017-01-24 00:00:00.000','2017-01-24 17:23:00.000','17:23:00','2017-01-24 17:23:00.000',2016,GeomFromText('POINT(1 2)'),GeomFromText('LINESTRING(0 0,1 1,2 2)'),GeomFromText('POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5))'),GeomFromText('MULTIPOINT(0 0,1 1,2 2)'),GeomFromText('MULTILINESTRING((0 0,1 1,2 2),(0 0,1 1,2 2))'),GeomFromText('MULTIPOLYGON(((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5)),((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5)))'),GeomFromText('GEOMETRYCOLLECTION(POINT(1 1),LINESTRING(0 1,2 3,4 5),POLYGON((0 0,10 0,10 10,0 10,0 0),(5 5,7 5,7 7,5 7,5 5)))'),'\"lorem ipsum\"',X'21','red','a');