feat: do not remove time filters in ScanRegion (#5180)

* feat: do not remove time filters

* chore: remove `time_range` from parquet reader

* chore: print more message in the check script

* chore: fix unused error
This commit is contained in:
Yingwen
2024-12-18 14:39:49 +08:00
committed by GitHub
parent 58d6982c93
commit c6b7caa2ec
6 changed files with 17 additions and 118 deletions

View File

@@ -58,8 +58,10 @@ def main():
if not check_snafu_in_files(branch_name, other_rust_files)
]
for name in unused_snafu:
print(name)
if unused_snafu:
print("Unused error variants:")
for name in unused_snafu:
print(name)
if unused_snafu:
raise SystemExit(1)