We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0cf303 commit cf11d52Copy full SHA for cf11d52
crates/connectors/ndc-postgres/src/schema/mod.rs
@@ -55,7 +55,11 @@ pub fn get_schema(
55
// any other will simply be a custom sum function. eg. sum over intervals
56
(
57
"sum",
58
- Some(TypeRepresentation::Float64 | TypeRepresentation::Int64),
+ Some(
59
+ TypeRepresentation::Float64
60
+ | TypeRepresentation::Int64
61
+ | TypeRepresentation::Int64AsString,
62
+ ),
63
) => models::AggregateFunctionDefinition::Sum {
64
result_type: function_definition.return_type.clone().into(),
65
},
0 commit comments