fix: check_partition uses unqualified name (#4452)

* fix: check_partition uses unqualified name

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

* update sqlness result

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

---------

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
This commit is contained in:
Ruihang Xia
2024-07-30 19:28:28 +08:00
committed by GitHub
parent 7daf24c47f
commit 2d992f4f12
3 changed files with 145 additions and 1 deletions

View File

@@ -176,7 +176,7 @@ impl Categorizer {
}
let ref_cols = ref_cols
.into_iter()
.map(|c| c.flat_name())
.map(|c| c.name.clone())
.collect::<HashSet<_>>();
for col in partition_cols {
if !ref_cols.contains(col) {