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 because there is no unsigned data types in RisingWave, so we have been conservative on implicit conversion:
In source, uint32 is promoted to bigint and uint64 is promoted to numeric (aka decimal).
In sink, bigint may not fit back into a uint32, similarly numeric into uint64.
To allow such round trips, we may require an explicit acknowledgement such as allow_lossy_cast = true (name TBD). Better design alternatives are welcomed.
Describe the bug
Cannot create a sink form a source with identical protobuf shema
Error message/log
To Reproduce
Expected behavior
I expected that the sink created
How did you deploy RisingWave?
Homebrew
The version of RisingWave
Additional context
No response
The text was updated successfully, but these errors were encountered: