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
fix(test): correct aggregate tests to use encrypted column
The aggregate tests (count, max, min) were incorrectly testing
the plain `id` column instead of the encrypted `e` column:
- count_aggregate_on_encrypted_column: COUNT(*) → COUNT(e)
- max_aggregate_on_encrypted_column: MAX(id) → eql_v2.max(e)
- min_aggregate_on_encrypted_column: MIN(id) → eql_v2.min(e)
These tests now properly verify that aggregate functions work
on encrypted data, not just plain integers.
0 commit comments