File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,12 @@ def test_sqlite(self):
128
128
cursor .execute ("CREATE VIRTUAL TABLE fts3 USING fts3(sender, title, body);" )
129
129
cursor .execute ("CREATE VIRTUAL TABLE fts4 USING fts4(sender, title, body);" )
130
130
cursor .execute ("CREATE VIRTUAL TABLE fts5 USING fts5(sender, title, body);" )
131
- cursor .execute ("CREATE VIRTUAL TABLE geopoly USING geopoly();" )
132
131
cursor .execute ("CREATE VIRTUAL TABLE rtree USING rtree(id, minX, maxX);" )
132
+ if os .name != "nt" :
133
+ # TODO(geofft): not sure why this isn't present in the prebuilt
134
+ # sqlite3 Windows library from CPython upstream, it seems weird to
135
+ # be inconsistent across platforms, but that's the status quo
136
+ cursor .execute ("CREATE VIRTUAL TABLE geopoly USING geopoly();" )
133
137
conn .close ()
134
138
135
139
def test_ssl (self ):
You can’t perform that action at this time.
0 commit comments