Changeset: 9f63cfc02231 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/9f63cfc02231 Modified Files: testing/sqllogictest.py Branch: default Log Message:
Give more information when bad column type. diffs (12 lines): diff --git a/testing/sqllogictest.py b/testing/sqllogictest.py --- a/testing/sqllogictest.py +++ b/testing/sqllogictest.py @@ -344,7 +344,7 @@ class SQLLogic: else: self.raise_error('incorrect column type indicator') except TypeError: - self.query_error(query, 'bad column type') + self.query_error(query, f'bad column type {columns[i]} at {i}') return None ndata.append(tuple(nrow)) return ndata _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org