Skip to content

Commit

Permalink
Adds missing conversion case in DataExtensions.
Browse files Browse the repository at this point in the history
  • Loading branch information
ppanopticon committed Dec 21, 2023
1 parent 82929ae commit 2ef1092
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ fun Tuple.toTuple(): CottontailGrpc.QueryResponseMessage.Tuple {
internal fun Any.tryConvertToValue(): PublicValue = when(this) {
is PublicValue -> this
is String -> StringValue(this)
is UUID -> UuidValue(this)
is Boolean -> BooleanValue(this)
is Byte -> ByteValue(this)
is Short -> ShortValue(this)
Expand Down

0 comments on commit 2ef1092

Please sign in to comment.