Skip to content

Commit 662df38

Browse files
authored
Merge pull request #7 from thodt-md/master
Creating index on a non-existing column fails
2 parents ba9cbdc + fc3537c commit 662df38

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sql/Comments_post.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ CREATE INDEX cmnts_score_idx ON Comments USING btree (Score)
33
WITH (FILLFACTOR = 100);
44
CREATE INDEX cmnts_postid_idx ON Comments USING hash (PostId)
55
WITH (FILLFACTOR = 100);
6-
CREATE INDEX cmnts_revguid_idx ON Comments USING btree (RevisionGUID)
7-
WITH (FILLFACTOR = 100);
86
CREATE INDEX cmnts_creation_date_idx ON Comments USING btree (CreationDate)
97
WITH (FILLFACTOR = 100);
108
CREATE INDEX cmnts_userid_idx ON Comments USING btree (UserId)

0 commit comments

Comments
 (0)