Skip to content

Commit 0bbc927

Browse files
committed
Fix
1 parent bfdad47 commit 0bbc927

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

server/src/query/filter_optimizer.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,8 @@ impl OptimizerRule for FilterOptimizerRule {
6969
tags_field.is_nullable(),
7070
));
7171

72-
table.projected_schema = Arc::new(dbg!(DFSchema::new_with_metadata(
73-
df_schema,
74-
HashMap::default()
75-
))?);
72+
table.projected_schema =
73+
Arc::new(DFSchema::new_with_metadata(df_schema, HashMap::default())?);
7674
if let Some(projection) = &mut table.projection {
7775
projection.push(tags_index)
7876
}

0 commit comments

Comments
 (0)