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
Pretty straightforward from the title. With all the recent enhancements vreplication and evalengine (not sure if this is actually used in vrep), I expected to be able to filter vreplication for multiple values, since I can already filter for single values. It seems like overkill to have to specify 3 separate vreplication streams for 3 separate values.
VReplication using IN:
SELECT event_id AS id, workspace_id as keyspace_id, reward_id, event_type
FROM users_rewards__events
WHERE event_type IN (3,7,8)
Error:
vttablet: rpc error: code = Unknown desc = comparison operator in not supported
VReplication using OR:
SELECT event_id AS id, workspace_id as keyspace_id, reward_id, event_type
FROM users_rewards__events
WHERE event_type event_type=3OR event_type=7OR event_type=8
Pretty straightforward from the title. With all the recent enhancements vreplication and evalengine (not sure if this is actually used in vrep), I expected to be able to filter vreplication for multiple values, since I can already filter for single values. It seems like overkill to have to specify 3 separate vreplication streams for 3 separate values.
VReplication using IN:
Error:
vttablet: rpc error: code = Unknown desc = comparison operator in not supported
VReplication using OR:
Error:
Materialize config:
Related Issues:
Version: > v13 - pretty close to current main on 2022-04-11
The text was updated successfully, but these errors were encountered: