Skip to content

Commit 31d1daf

Browse files
authored
Make 'SequenceAnalysis-12.328-12.329.sql' compatible with Postgres 10 (#129)
The `INCLUDE` clause isn't supported by Postgres 10
1 parent 78934ba commit 31d1daf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

SequenceAnalysis/resources/schemas/dbscripts/postgresql/SequenceAnalysis-12.328-12.329.sql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,11 @@ CREATE INDEX IDX_asj_status_container_alignment_id_ref_nt_id ON sequenceanalysis
77

88
CREATE INDEX IDX_readData_readset ON sequenceanalysis.readData (
99
readset ASC
10-
)
11-
INCLUDE(fileid1, fileid2, runid);
10+
);
1211

1312
CREATE INDEX IDX_quality_metrics_metricname_dataid_readset ON sequenceanalysis.quality_metrics (
1413
metricName ASC,
1514
dataId ASC,
1615
readset ASC
17-
)
18-
INCLUDE(metricValue);
16+
);
1917

0 commit comments

Comments
 (0)