Changeset: c42692e1ead1 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/c42692e1ead1
Modified Files:
testing/sqllogictest.py
Branch: Dec2023
Log Message:
Skip blobs when searching for MULTIPOINT.
diffs (12 lines):
diff --git a/testing/sqllogictest.py b/testing/sqllogictest.py
--- a/testing/sqllogictest.py
+++ b/testing/sqllogictest.py
@@ -429,7 +429,7 @@ class SQLLogic:
for row in data:
nrow = []
for col in row:
- if type(col) in (type(''), type(b'')):
+ if type(col) == type(''):
res = geosre.search(col)
if res is not None:
points = ptsre.sub(r'(\g<0>)', res.group('points'))
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]