-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Grammar for create_extension_stmt drop_extension_stmt alter_extension…
…_stmt Extensions with fixture tests for supported syntax CreateExtensionTests removed as not needed in this change
- Loading branch information
Showing
3 changed files
with
25 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
dialects/postgresql/src/testFixtures/resources/fixtures_postgresql/extensions/Sample.s
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; | ||
CREATE EXTENSION pg_trgm; | ||
CREATE EXTENSION pg_stat_statements WITH SCHEMA pgss; | ||
CREATE EXTENSION bool_plperlu CASCADE; | ||
CREATE EXTENSION citext WITH VERSION '1.1'; | ||
|
||
ALTER EXTENSION hstore UPDATE TO '1.3'; | ||
ALTER EXTENSION IF EXISTS hstore UPDATE; | ||
ALTER EXTENSION IF EXISTS hstore SET SCHEMA public; | ||
|
||
DROP EXTENSION citext; | ||
DROP EXTENSION hstore CASCADE; | ||
DROP EXTENSION IF EXISTS hstore, pg_trgm, citext RESTRICT; |
34 changes: 0 additions & 34 deletions
34
sqldelight-compiler/src/test/kotlin/app/cash/sqldelight/core/CreateExtensionTests.kt
This file was deleted.
Oops, something went wrong.