Skip to content

Commit 8ef151e

Browse files
committed
Revert "downgrade sqlite to 3.39.4"
This reverts commit 7ba02e2.
1 parent 7ba02e2 commit 8ef151e

3 files changed

Lines changed: 4 additions & 8 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM centos:7 as builder
55

66
ARG CMAKE_VERSION=3.17.3
7-
ARG SQLITE_VERSION=3390400
7+
ARG SQLITE_VERSION=3400000
88
ARG ZSTD_VERSION=1.5.2
99
ARG CPU_ARCH=ivybridge
1010
ENV CFLAGS="-march=${CPU_ARCH} -O3"

test/genomicsqlite_smoke_test.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ def main():
129129
results == control_results
130130
), "discrepancy between genomic_range_rowids_sql() and control results"
131131

132-
for expl in dbconn.execute("EXPLAIN " + query):
133-
if expl[1] in {"OpenRead", "OpenPseudo", "Column"}:
134-
print(" " + str(expl))
135-
136132
if gri_constraints != 3:
137133
print("GRI query opcodes:")
138134
for expl in dbconn.execute("EXPLAIN " + query):

test/test_gri.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def test_indexing():
5656

5757
# The query should be covered by the index except for one final fetch of exons.id
5858
opcodes = list(con.execute("EXPLAIN " + query, ("chr17", 43044294, 43048294)))
59-
for expl in opcodes:
60-
if expl[1] in {"OpenRead", "OpenPseudo", "Column"}:
61-
print(expl)
59+
# for expl in opcodes:
60+
# if expl[1] in {"OpenRead", "OpenPseudo", "Column"}:
61+
# print(expl)
6262
accessed_cursors = list(opcode[2] for opcode in opcodes if opcode[1] == "Column")
6363
table_rootpages = set(
6464
row[0] for row in con.execute("SELECT rootpage FROM sqlite_master WHERE type='table'")

0 commit comments

Comments
 (0)