Files
zitadel/apps/api/internal/cache/connector/pg/create_partition.sql.tmpl
2025-08-05 15:20:32 -07:00

8 lines
233 B
Cheetah

create unlogged table if not exists cache.objects_{{ . }}
partition of cache.objects
for values in ('{{ . }}');
create unlogged table if not exists cache.string_keys_{{ . }}
partition of cache.string_keys
for values in ('{{ . }}');