Skip to content

Commit 283fbdc

Browse files
committed
try to fix test
1 parent 3d60710 commit 283fbdc

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<clickhouse>
2+
<profiles>
3+
<default>
4+
<input_format_parquet_use_metadata_cache>0</input_format_parquet_use_metadata_cache>
5+
</default>
6+
</profiles>
7+
</clickhouse>

tests/integration/test_storage_delta/test.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def started_cluster():
101101
user_configs=[
102102
"configs/users.d/users.xml",
103103
"configs/users.d/enable_writes.xml",
104+
"configs/users.d/disable_parquet_metadata_caching.xml",
104105
],
105106
with_minio=True,
106107
with_azurite=True,
@@ -117,6 +118,7 @@ def started_cluster():
117118
user_configs=[
118119
"configs/users.d/users.xml",
119120
"configs/users.d/enable_writes.xml",
121+
"configs/users.d/disable_parquet_metadata_caching.xml",
120122
],
121123
with_minio=True,
122124
stay_alive=True,
@@ -131,6 +133,7 @@ def started_cluster():
131133
"configs/config.d/named_collections.xml",
132134
"configs/config.d/use_environment_credentials.xml",
133135
],
136+
user_configs=["configs/users.d/users.xml", "configs/users.d/disable_parquet_metadata_caching.xml"],
134137
env_variables={
135138
"AWS_ACCESS_KEY_ID": minio_access_key,
136139
"AWS_SECRET_ACCESS_KEY": minio_secret_key,
@@ -144,7 +147,7 @@ def started_cluster():
144147
"configs/config.d/filesystem_caches.xml",
145148
"configs/config.d/remote_servers.xml",
146149
],
147-
user_configs=["configs/users.d/users.xml"],
150+
user_configs=["configs/users.d/users.xml", "configs/users.d/disable_parquet_metadata_caching.xml"],
148151
with_installed_binary=True,
149152
image="clickhouse/clickhouse-server",
150153
tag="25.3.3.42",
@@ -163,6 +166,7 @@ def started_cluster():
163166
user_configs=[
164167
"configs/users.d/users.xml",
165168
"configs/users.d/disabled_delta_kernel.xml",
169+
"configs/users.d/disable_parquet_metadata_caching.xml",
166170
],
167171
with_minio=True,
168172
with_azurite=True,

0 commit comments

Comments
 (0)