Skip to content

Commit cad427c

Browse files
committed
fix: restore conditional for expected timestamp type based on QuestDB version
1 parent 9b00b39 commit cad427c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/system_test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,7 @@ def test_http(self):
212212

213213
resp = self.qdb_plain.retry_check_table(table_name, min_rows=3)
214214

215-
# Re-enable the line below once https://github.com/questdb/questdb/pull/6220 is merged
216-
# exp_ts_type = 'TIMESTAMP' if self.qdb_plain.version <= (9, 1, 0) else 'TIMESTAMP_NS'
217-
exp_ts_type = 'TIMESTAMP'
215+
exp_ts_type = 'TIMESTAMP' if self.qdb_plain.version <= (9, 1, 0) else 'TIMESTAMP_NS'
218216

219217
exp_columns = [
220218
{'name': 'name_a', 'type': 'SYMBOL'},

0 commit comments

Comments
 (0)