Skip to content

Commit

Permalink
declare id NOT NULL so that it can be used as a cursor for incrementa…
Browse files Browse the repository at this point in the history
…l syncs in tests (#15774)
  • Loading branch information
pmossman authored Aug 19, 2022
1 parent 89ed13e commit a3a6501
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CREATE
TABLE
id_and_name(
id INTEGER,
id INTEGER NOT NULL,
name VARCHAR(200)
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CREATE
CREATE
TABLE
staging.cool_employees(
id INTEGER,
id INTEGER NOT NULL,
name VARCHAR(200)
);

Expand Down Expand Up @@ -38,7 +38,7 @@ INSERT
CREATE
TABLE
staging.awesome_people(
id INTEGER,
id INTEGER NOT NULL,
name VARCHAR(200)
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CREATE
CREATE
TABLE
staging.id_and_name(
id INTEGER,
id INTEGER NOT NULL,
name VARCHAR(200)
);

Expand Down

0 comments on commit a3a6501

Please sign in to comment.