Skip to content

Commit

Permalink
Hotfix: Test in information_schema.slt fails (#7286)
Browse files Browse the repository at this point in the history
* Hotfix

* Another fix.

* Better solution
  • Loading branch information
sarutak committed Aug 15, 2023
1 parent a5e86fa commit 6ad7916
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand 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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user-guide/configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down

0 comments on commit 6ad7916

Please sign in to comment.