Skip to content

Commit

Permalink
snap: add
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisvisco committed Jun 2, 2024
1 parent eb44be4 commit d394b8a
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DROP INDEX IF EXISTS tst_pg_drop_index_2.idx_articles_name_custom
DROP INDEX tst_pg_drop_index_2.idx_articles_name_custom
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX tst_pg_drop_index_0.idx_articles_name
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX idx_articles_name_custom ON tst_pg_drop_index_1.articles (name)
DROP INDEX tst_pg_drop_index_1.idx_articles_name_custom
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX idx_articles_name ON articles (name)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX lalalalala ON articles (name)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX idx_articles_name_id ON articles (name, id)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX idx_articles_name ON articles (name DESC)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX idx_articles_name_id ON articles (name DESC, id ASC)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX idx_articles_name ON articles (name) WHERE name IS NOT NULL
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE UNIQUE INDEX idx_articles_name ON articles (name)
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DROP INDEX IF EXISTS idx_articles_name_custom
DROP INDEX idx_articles_name_custom
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP INDEX idx_articles_name
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CREATE INDEX idx_articles_name_custom ON articles (name)
DROP INDEX idx_articles_name_custom

0 comments on commit d394b8a

Please sign in to comment.