Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions test/init.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
CREATE TABLE projects (
id integer,
name text,
client_id integer
CREATE TABLE projects
( id integer
, name text
, project_name text
, client_id integer
, subclient_id int
);
-- ensure these dropped column cases are tested
ALTER TABLE projects DROP COLUMN project_name;
ALTER TABLE projects DROP COLUMN subclient_id;

INSERT INTO projects VALUES (1, 'Windows 7', 1);
INSERT INTO projects VALUES (2, 'has,comma', 1);
INSERT INTO projects VALUES (NULL, NULL, NULL);
Expand Down
Loading