@@ -20,7 +20,7 @@ SELECT cs_add_index_v1('examples', 'encrypted_small_int', 'ore', 'small_int');
2020SELECT cs_add_index_v1(' examples' , ' encrypted_utf8_str' , ' unique' , ' text' , ' {"token_filters": [{"kind": "downcase"}]}' );
2121SELECT cs_add_index_v1(' examples' , ' encrypted_utf8_str' , ' match' , ' text' );
2222SELECT cs_add_index_v1(' examples' , ' encrypted_utf8_str' , ' ore' , ' text' );
23- SELECT cs_add_index_v1(' examples' , ' encrypted_jsonb' , ' ste_vec' , ' jsonb' , ' {"prefix": "some-prefix "}' );
23+ SELECT cs_add_index_v1(' examples' , ' encrypted_jsonb' , ' ste_vec' , ' jsonb' , ' {"prefix": "examples/encrypted_jsonb "}' );
2424
2525-- Add corresponding PG indexes for each CipherStash index
2626CREATE INDEX ON examples (cs_ore_64_8_v1(encrypted_big_int));
@@ -32,7 +32,7 @@ CREATE INDEX ON examples (cs_ore_64_8_v1(encrypted_small_int));
3232CREATE UNIQUE INDEX ON examples(cs_unique_v1(encrypted_utf8_str));
3333CREATE INDEX ON examples USING GIN (cs_match_v1(encrypted_utf8_str));
3434CREATE INDEX ON examples (cs_ore_64_8_v1(encrypted_utf8_str));
35- CREATE INDEX ON examples USING GIN (cs_ste_vec_v1(encrypted_jsonb));
35+ -- CREATE INDEX ON examples USING GIN (cs_ste_vec_v1(encrypted_jsonb));
3636
3737-- Transition the Encrypt config state from "pending", to "encrypting", and then "active".
3838-- The Encrypt config must be "active" for Proxy to use it.
0 commit comments