Skip to content

Commit 6b1f263

Browse files
committed
fix: update decimal column name in table creation for system tests
1 parent ac4350a commit 6b1f263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/system_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def test_decimal_py_obj(self):
275275
self.skipTest('old server does not support decimal')
276276

277277
table_name = uuid.uuid4().hex
278-
self.qdb_plain.http_sql_query(f'CREATE TABLE {table_name} (prices DECIMAL(18,3), timestamp TIMESTAMP) TIMESTAMP(timestamp) PARTITION BY DAY;')
278+
self.qdb_plain.http_sql_query(f'CREATE TABLE {table_name} (dec_col DECIMAL(18,3), timestamp TIMESTAMP) TIMESTAMP(timestamp) PARTITION BY DAY;')
279279

280280
pending = None
281281
with qi.Sender('http', 'localhost', self.qdb_plain.http_server_port) as sender:

0 commit comments

Comments
 (0)