Skip to content

Commit 05024c5

Browse files
committed
chore(query): fix zero key and return type in in function
1 parent c2275e3 commit 05024c5

File tree

1 file changed

+18
-2
lines changed
  • src/query/functions/src/scalars/conditionals

1 file changed

+18
-2
lines changed

src/query/functions/src/scalars/conditionals/in_basic.rs

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,15 @@ impl<const NEGATED: bool> Function for InFunction<NEGATED> {
246246
)
247247
}
248248
TypeID::UInt8 => {
249-
scalar_contains!(u8, input_col, input_rows, columns, least_super_dt, func_ctx, return_nullable)
249+
scalar_contains!(
250+
u8,
251+
input_col,
252+
input_rows,
253+
columns,
254+
least_super_dt,
255+
func_ctx,
256+
return_nullable
257+
)
250258
}
251259
TypeID::UInt16 => {
252260
scalar_contains!(
@@ -282,7 +290,15 @@ impl<const NEGATED: bool> Function for InFunction<NEGATED> {
282290
)
283291
}
284292
TypeID::Int8 => {
285-
scalar_contains!(i8, input_col, input_rows, columns, least_super_dt, func_ctx, return_nullable)
293+
scalar_contains!(
294+
i8,
295+
input_col,
296+
input_rows,
297+
columns,
298+
least_super_dt,
299+
func_ctx,
300+
return_nullable
301+
)
286302
}
287303
TypeID::Int16 => {
288304
scalar_contains!(

0 commit comments

Comments
 (0)