Skip to content

Commit 1b3d679

Browse files
committed
Mark RENAME TABLE as not supported in Postgres & PL/pgSQL
1 parent 1c2e750 commit 1b3d679

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

test/ddl/rename_table.test.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,9 @@ describe("rename table", () => {
5353
});
5454
});
5555

56-
dialect(["bigquery", "sqlite"], () => {
56+
dialect(["bigquery", "sqlite", "postgresql", "plpgsql"], () => {
5757
it("does not support RENAME TABLE", () => {
5858
expect(() => parseStmt("RENAME TABLE foo TO bar")).toThrow();
5959
});
6060
});
61-
62-
dialect(["postgresql", "plpgsql"], () => {
63-
it.skip("TODO:postgres", () => {
64-
expect(true).toBe(true);
65-
});
66-
});
6761
});

0 commit comments

Comments
 (0)