Skip to content

Commit

Permalink
Enable yugabyte testing
Browse files Browse the repository at this point in the history
  • Loading branch information
barroco committed Jan 7, 2025
1 parent 1b59ec3 commit f7531de
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,7 @@ jobs:
run: make start-locally
- name: Bring down local DSS instance
run: make down-locally
- name: Probe local DSS instance
run: make probe-locally
- name: Run Qualifier against local DSS instance
run: make qualify-locally
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);
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;
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);
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;

0 comments on commit f7531de

Please sign in to comment.