We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c262ca commit 54780e8Copy full SHA for 54780e8
2 files changed
datafusion/core/tests/user_defined/insert_operation.rs
@@ -184,7 +184,7 @@ impl ExecutionPlan for TestInsertExec {
184
fn make_count_schema() -> SchemaRef {
185
Arc::new(Schema::new(vec![Field::new(
186
"count",
187
- DataType::Int64, // should return signed int for snowflake
+ DataType::UInt64,
188
false,
189
)]))
190
}
datafusion/expr/src/logical_plan/dml.rs
@@ -236,8 +236,7 @@ impl Display for InsertOp {
236
237
fn make_count_schema() -> DFSchemaRef {
238
Arc::new(
239
- // should return signed int for snowflake
240
- Schema::new(vec![Field::new("count", DataType::Int64, false)])
+ Schema::new(vec![Field::new("count", DataType::UInt64, false)])
241
.try_into()
242
.unwrap(),
243
)
0 commit comments