Skip to content

Commit

Permalink
fix: add text_files and deleted_text_files to ColumnCatalog (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
loloxwg authored Oct 5, 2023
1 parent 71c6295 commit c159a30
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/execution/executor/dml/copy_from_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ mod tests {
nullable: false,
desc: ColumnDesc::new(LogicalType::Integer, true, false),
ref_expr: None,
text_files: vec![],
deleted_text_files: vec![],
}),
Arc::new(ColumnCatalog {
id: Some(1),
Expand All @@ -147,6 +149,8 @@ mod tests {
nullable: false,
desc: ColumnDesc::new(LogicalType::Float, false, false),
ref_expr: None,
text_files: vec![],
deleted_text_files: vec![],
}),
Arc::new(ColumnCatalog {
id: Some(1),
Expand All @@ -155,6 +159,8 @@ mod tests {
nullable: false,
desc: ColumnDesc::new(LogicalType::Varchar(Some(10)), false, false),
ref_expr: None,
text_files: vec![],
deleted_text_files: vec![],
}),
];

Expand Down

0 comments on commit c159a30

Please sign in to comment.