-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
18 additions
and
0 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
2 changes: 2 additions & 0 deletions
2
build/db_schemas/yugabyte/rid/downfrom-v1.0.1-drop-ybgin-indexes.sql
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,2 @@ | ||
CREATE INDEX s_cell_idx ON subscriptions USING ybgin (cells); | ||
CREATE INDEX isa_cell_idx ON identification_service_areas USING ybgin (cells); |
4 changes: 4 additions & 0 deletions
4
build/db_schemas/yugabyte/rid/upto-v1.0.1-drop-ybgin-indexes.sql
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,4 @@ | ||
-- This migration drops ybgin indexes due to existing limitation to use it with other indexes. | ||
-- https://docs.yugabyte.com/preview/explore/ysql-language-features/indexes-constraints/gin/#limitations. | ||
DROP INDEX s_cell_idx; | ||
DROP INDEX isa_cell_idx; |
3 changes: 3 additions & 0 deletions
3
build/db_schemas/yugabyte/scd/downfrom-v1.0.1-drop-ybgin-indexes.sql
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,3 @@ | ||
CREATE INDEX sc_cells_idx ON scd_constraints USING ybgin (cells); | ||
CREATE INDEX ss_cells_idx ON scd_subscriptions USING ybgin (cells); | ||
CREATE INDEX so_cells_idx ON scd_operations USING ybgin (cells); |
5 changes: 5 additions & 0 deletions
5
build/db_schemas/yugabyte/scd/upto-v1.0.1-drop-ybgin-indexes.sql
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,5 @@ | ||
-- This migration drops ybgin indexes due to existing limitation to use it with other indexes. | ||
-- https://docs.yugabyte.com/preview/explore/ysql-language-features/indexes-constraints/gin/#limitations. | ||
DROP INDEX sc_cells_idx; | ||
DROP INDEX ss_cells_idx; | ||
DROP INDEX so_cells_idx; |