Skip to content

Commit 5583bca

Browse files
committed
bug fix
1 parent 85884d4 commit 5583bca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

go/libraries/doltcore/sqle/kvexec/lookup_join.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,12 @@ func convertLiteralKeyValue(ctx *sql.Context, colTyp sql.ColumnExpressionType, v
296296
// For extended types, use the rich type conversion methods
297297
if srcEt, ok := srcType.(sql.ExtendedType); ok {
298298
if destEt, ok := destType.(sql.ExtendedType); ok {
299-
converted, err := destEt.ConvertToType(ctx, srcEt, val.Value())
299+
converted, inRange, err := destEt.ConvertToType(ctx, srcEt, val.Value())
300300
if err != nil {
301301
return nil, false, err
302302
}
303303

304-
return converted, sql.InRange, nil
304+
return converted, inRange, nil
305305
}
306306
}
307307

0 commit comments

Comments
 (0)