Skip to content

Commit

Permalink
Tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Mar 1, 2024
1 parent 2838bf0 commit 5c1aa5a
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions integration_tests/mysql/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,29 +88,29 @@ const testTypesCreateTableQuery = `
CREATE TABLE %s (
pk INTEGER PRIMARY KEY NOT NULL,
c_tinyint TINYINT,
c_smallint SMALLINT,
c_mediumint MEDIUMINT,
c_int INT,
c_bigint BIGINT,
c_decimal DECIMAL(7, 5),
c_numeric NUMERIC(5, 3),
c_float FLOAT,
c_double DOUBLE,
c_bit BIT,
c_date DATE,
c_datetime DATETIME,
c_timestamp TIMESTAMP,
c_time TIME,
c_year YEAR,
c_char CHAR,
c_varchar VARCHAR(100),
c_binary BINARY(100),
c_varbinary VARBINARY(100),
c_blob BLOB,
c_text TEXT,
c_enum ENUM('x-small', 'small', 'medium', 'large', 'x-large'),
c_set SET('one', 'two', 'three'),
c_json JSON
c_smallint SMALLINT,
c_mediumint MEDIUMINT,
c_int INT,
c_bigint BIGINT,
c_decimal DECIMAL(7, 5),
c_numeric NUMERIC(5, 3),
c_float FLOAT,
c_double DOUBLE,
c_bit BIT,
c_date DATE,
c_datetime DATETIME,
c_timestamp TIMESTAMP,
c_time TIME,
c_year YEAR,
c_char CHAR,
c_varchar VARCHAR(100),
c_binary BINARY(100),
c_varbinary VARBINARY(100),
c_blob BLOB,
c_text TEXT,
c_enum ENUM('x-small', 'small', 'medium', 'large', 'x-large'),
c_set SET('one', 'two', 'three'),
c_json JSON
)
`

Expand Down

0 comments on commit 5c1aa5a

Please sign in to comment.