This is an automated email from the ASF dual-hosted git repository.
viirya pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 6ad79165f6 Hotfix: Test in information_schema.slt fails (#7286)
6ad79165f6 is described below
commit 6ad79165f6554a66aa5ed4c5d432401c2c162f69
Author: Kousuke Saruta <[email protected]>
AuthorDate: Tue Aug 15 16:04:42 2023 +0900
Hotfix: Test in information_schema.slt fails (#7286)
* Hotfix
* Another fix.
* Better solution
---
.../core/tests/sqllogictests/test_files/information_schema.slt | 6 +++++-
docs/source/user-guide/configs.md | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git
a/datafusion/core/tests/sqllogictests/test_files/information_schema.slt
b/datafusion/core/tests/sqllogictests/test_files/information_schema.slt
index 452a8709c5..1c70419a47 100644
--- a/datafusion/core/tests/sqllogictests/test_files/information_schema.slt
+++ b/datafusion/core/tests/sqllogictests/test_files/information_schema.slt
@@ -131,6 +131,10 @@ SET datafusion.execution.target_partitions=7
statement ok
SET datafusion.execution.planning_concurrency=13
+# pin the version string for test
+statement ok
+SET datafusion.execution.parquet.created_by=datafusion
+
# show all variables
query TT rowsort
SHOW ALL
@@ -151,7 +155,7 @@ datafusion.execution.parquet.bloom_filter_fpp 0.05
datafusion.execution.parquet.bloom_filter_ndv 1000000
datafusion.execution.parquet.column_index_truncate_length NULL
datafusion.execution.parquet.compression snappy
-datafusion.execution.parquet.created_by datafusion version 28.0.0
+datafusion.execution.parquet.created_by datafusion
datafusion.execution.parquet.data_page_row_count_limit 18446744073709551615
datafusion.execution.parquet.data_pagesize_limit 1048576
datafusion.execution.parquet.dictionary_enabled true
diff --git a/docs/source/user-guide/configs.md
b/docs/source/user-guide/configs.md
index 50d9cb7c8b..acb0893a70 100644
--- a/docs/source/user-guide/configs.md
+++ b/docs/source/user-guide/configs.md
@@ -64,7 +64,7 @@ Environment variables are read during `SessionConfig`
initialisation so they mus
| datafusion.execution.parquet.statistics_enabled | page
| Sets if statistics are enabled for any column Valid values are:
"none", "chunk", and "page" These values are not case sensitive.
[...]
| datafusion.execution.parquet.max_statistics_size | 4096
| Sets max statistics size for any column
[...]
| datafusion.execution.parquet.max_row_group_size | 1048576
| Sets maximum number of rows in a row group
[...]
-| datafusion.execution.parquet.created_by | datafusion
version 28.0.0 | Sets "created by" property
[...]
+| datafusion.execution.parquet.created_by | datafusion
version 29.0.0 | Sets "created by" property
[...]
| datafusion.execution.parquet.column_index_truncate_length | NULL
| Sets column index trucate length
[...]
| datafusion.execution.parquet.data_page_row_count_limit |
18446744073709551615 | Sets best effort maximum number of rows in data
page
[...]
| datafusion.execution.parquet.encoding | plain
| Sets default encoding for any column Valid values are: plain,
plain_dictionary, rle, bit_packed, delta_binary_packed,
delta_length_byte_array, delta_byte_array, rle_dictionary, and
byte_stream_split. These values are not case sensitive.
[...]