Skip to content

Commit

Permalink
Update fixtures according to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Jan 3, 2024
1 parent c003f9c commit 5c998c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Support/Fixture/pgsql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -138,19 +138,19 @@ CREATE TABLE "null_values" (

CREATE TABLE "type" (
int_col integer NOT NULL,
float_col double precision NOT NULL,
char_col char(100) NOT NULL,
bool_col boolean NOT NULL,
int_col2 integer DEFAULT '1',
tinyint_col smallint DEFAULT '1',
smallint_col smallint DEFAULT '1',
char_col char(100) NOT NULL,
char_col2 varchar(100) DEFAULT 'some''thing',
char_col3 text,
char_col4 character varying DEFAULT E'first line\nsecond line',
float_col double precision NOT NULL,
float_col2 double precision DEFAULT '1.23',
blob_col bytea DEFAULT 'a binary value',
numeric_col decimal(5,2) DEFAULT '33.22',
time timestamp NOT NULL DEFAULT '2002-01-01 00:00:00',
bool_col boolean NOT NULL,
bool_col2 boolean DEFAULT TRUE,
ts_default TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
bit_col BIT(8) NOT NULL DEFAULT B'10000010', -- 130
Expand Down

0 comments on commit 5c998c6

Please sign in to comment.