Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
st1page committed Sep 27, 2023
1 parent abaf83b commit e87f52d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tests/simulation/tests/integration_tests/sink/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ impl Drop for TestWriter {
}

fn build_stream_chunk(row_iter: impl Iterator<Item = (i32, String)>) -> StreamChunk {
let mut builder = DataChunkBuilder::new(vec![DataType::Int32, DataType::Varchar], 100000);
let mut builder = DataChunkBuilder::new(
vec![DataType::Int32, DataType::Varchar, DataType::Serial],
100000,
);
for (id, name) in row_iter {
assert!(builder
.append_one_row([
Expand Down

0 comments on commit e87f52d

Please sign in to comment.