mirror of
https://github.com/google/nomulus.git
synced 2025-05-19 02:39:34 +02:00
Add Bloom filters to the Cloud SQL PremiumList schema (#306)
* Add Bloom filters to the Cloud SQL PremiumList schema They are slightly different from the existing Bloom filters stored in Datastore in that they now use an ASCII String encoding rather than the more generic CharSequence, and there is no maximum size (whereas we previously had to live within the 1 MB max entity size for Datastore).
This commit is contained in:
parent
f2a2b2d2e2
commit
ce480a5191
8 changed files with 218 additions and 4 deletions
|
@ -130,6 +130,7 @@
|
|||
|
||||
create table "PremiumList" (
|
||||
revision_id bigserial not null,
|
||||
bloom_filter bytea not null,
|
||||
creation_timestamp timestamptz not null,
|
||||
currency bytea not null,
|
||||
name text not null,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue