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
ERROR: Panicked when handling the request: called `Result::unwrap()` on an `Err` value: function is_not_distinct_from(jsonb, jsonb) does not exist
This is a bug. We would appreciate a bug report at:
To Reproduce
No response
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
I was trying to found whether there are different data, so I want to use EXCEPT.
I workarounded it using select * from t1 where not exists (select 1 from t2 where t1.col1=t2.col2 AND ...)
UNION with jsonb is also supported
The text was updated successfully, but these errors were encountered:
Describe the bug
No response
Error message/log
To Reproduce
No response
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
EXCEPT
.select * from t1 where not exists (select 1 from t2 where t1.col1=t2.col2 AND ...)
UNION
with jsonb is also supportedThe text was updated successfully, but these errors were encountered: