You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a bug. You are trying to use an unknown UUID type from the package "github.com/google/uuid". Kwil provides a UUID type that is almost identical to Google's: github.com/kwilteam/kwil-db/core/types.UUID. You should be able to just take the current UUID you are using, get the 16 bytes, and wrap it with Kwil's type.
This is not a bug. You are trying to use an unknown UUID type from the package "github.com/google/uuid". Kwil provides a UUID type that is almost identical to Google's: github.com/kwilteam/kwil-db/core/types.UUID. You should be able to just take the current UUID you are using, get the 16 bytes, and wrap it with Kwil's type.
Hi @brennanjl, @KwilLuke.
I happen to encounter this error when trying to push records using
Execute
. Looks like triggered by this line:https://github.com/kwilteam/kwil-db/blob/main/core/types/transactions/payloads.go#L395
Looks like uuid.UUID is counted differently from types.UUID hence it goes to
default
case.Kunaiform used: https://github.com/truflation/tsn-data-provider/blob/cd065402c72a7d3332da3b0fa3eecd1afb7f5670/internal/migration/contracts/primitive_stream_new.kf
Error happened:
https://github.com/truflation/tsn-data-provider/blob/fd4ac326d07b357940cdcec0b66935510b8b6044/internal/dataproviderserver/infra/repo.go#L68
kwil-db version used: taken from kwilteam/kwil-db#787
Block
The text was updated successfully, but these errors were encountered: