[purge-ttl] Consider using REGEXP_CONTAINS()
for fxa_uid group matching
#735
Labels
3
Estimate - m - This is a small change, but there's some uncertainty.
see https://cloud.google.com/spanner/docs/functions-and-operators#regexp_contains
right now we do simple SQL
like 'a%'
for grouping. Unfortunately, spanner doesn't support ranges solike '[0-9]%
won't work. They do provideREGEXP_CONTAINS(column, pattern)
which would let us build ranges.The text was updated successfully, but these errors were encountered: