Skip to content

Commit 96568d1

Browse files
committed
add missing reference file
1 parent d153235 commit 96568d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/queries/0_stateless/03377_object_storage_list_objects_cache.reference

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
-- { echoOn }
22

33
-- The cached key should be `dir_`, and that includes all three files: 1, 2 and 3. Cache should return all three, but ClickHouse should filter out the third.
4-
SELECT _path, * FROM s3(s3_conn, filename='dir_a/dir_b/t_03377_sample_{1..2}.parquet') order by id SETTINGS use_object_storage_list_objects_cache=1;
4+
SELECT _path, id FROM s3(s3_conn, filename='dir_a/dir_b/t_03377_sample_{1..2}.parquet') order by id SETTINGS use_object_storage_list_objects_cache=1;
55
test/dir_a/dir_b/t_03377_sample_1.parquet 1
66
test/dir_a/dir_b/t_03377_sample_2.parquet 2
77
-- Make sure the filtering did not interfere with the cached values
8-
SELECT _path, * FROM s3(s3_conn, filename='dir_a/dir_b/t_03377_sample_*.parquet') order by id SETTINGS use_object_storage_list_objects_cache=1;
8+
SELECT _path, id FROM s3(s3_conn, filename='dir_a/dir_b/t_03377_sample_*.parquet') order by id SETTINGS use_object_storage_list_objects_cache=1;
99
test/dir_a/dir_b/t_03377_sample_1.parquet 1
1010
test/dir_a/dir_b/t_03377_sample_2.parquet 2
1111
test/dir_a/dir_b/t_03377_sample_3.parquet 3

0 commit comments

Comments
 (0)