Skip to content

Commit b96cb06

Browse files
authored
chore: change load_file_metadata_expire_hours default from 24*7 to 12 hours (#15514)
1 parent da9b492 commit b96cb06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query/settings/src/settings_default.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ impl DefaultSettings {
345345
range: Some(SettingRange::Numeric(0..=u64::MAX)),
346346
}),
347347
("load_file_metadata_expire_hours", DefaultSettingValue {
348-
value: UserSettingValue::UInt64(24 * 7),
348+
value: UserSettingValue::UInt64(24),
349349
desc: "Sets the hours that the metadata of files you load data from with COPY INTO will expire in.",
350350
mode: SettingMode::Both,
351351
range: Some(SettingRange::Numeric(0..=u64::MAX)),

0 commit comments

Comments
 (0)