Skip to content

Commit 43ba4e9

Browse files
authored
fix: strip attributes for export targets (#1033)
1 parent c591d88 commit 43ba4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/builder/analyzer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ impl AnalyzerContext {
857857
let mut value_fields_idx = vec![];
858858
for (idx, field) in collector_schema.fields.iter().enumerate() {
859859
if !pk_fields_idx.contains(&idx) {
860-
value_fields_schema.push(field.clone());
860+
value_fields_schema.push(field.without_attrs());
861861
value_fields_idx.push(idx as u32);
862862
}
863863
}

0 commit comments

Comments
 (0)