Fix style check

This commit is contained in:
kssenii 2022-03-25 10:14:14 +01:00
parent e91e30aaa4
commit edf0436f5c

View File

@ -557,7 +557,9 @@ def test_insert_select_schema_inference(started_cluster):
def test_virtual_column(started_cluster):
hdfs_api = started_cluster.hdfs_api
table_function = (f"hdfs('hdfs://hdfs1:9000/parquet', 'Parquet', 'a Int32, b String')")
table_function = (
f"hdfs('hdfs://hdfs1:9000/parquet', 'Parquet', 'a Int32, b String')"
)
node1.query(f"insert into table function {table_function} SELECT 1, 'kek'")
result = node1.query(f"SELECT _path FROM {table_function}")