Skip to content

Commit

Permalink
feat: change default value of use_parquet2 to 0. (#13754)
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsofun committed Nov 23, 2023
1 parent 54e8d25 commit 1b6d8fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ DB.Table: 'system'.'settings', Table: settings-table_id:1, ver:0, Engine: System
| 'table_lock_expire_secs' | '10' | '10' | 'SESSION' | 'Sets the seconds that the table lock will expire in.' | 'UInt64' |
| 'timezone' | 'UTC' | 'UTC' | 'SESSION' | 'Sets the timezone.' | 'String' |
| 'unquoted_ident_case_sensitive' | '0' | '0' | 'SESSION' | 'Determines whether Databend treats unquoted identifiers as case-sensitive.' | 'UInt64' |
| 'use_parquet2' | '1' | '1' | 'SESSION' | 'Use parquet2 instead of parquet_rs when infer_schema().' | 'UInt64' |
| 'use_parquet2' | '0' | '0' | 'SESSION' | 'Use parquet2 instead of parquet_rs when infer_schema().' | 'UInt64' |
+------------------------------------------------+----------------+----------------+-----------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------+


2 changes: 1 addition & 1 deletion src/query/settings/src/settings_default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ impl DefaultSettings {
display_in_show_settings: true,
}),
("use_parquet2", DefaultSettingValue {
value: UserSettingValue::UInt64(1),
value: UserSettingValue::UInt64(0),
desc: "Use parquet2 instead of parquet_rs when infer_schema().",
possible_values: None,
display_in_show_settings: true,
Expand Down

0 comments on commit 1b6d8fd

Please sign in to comment.