@@ -20,7 +20,7 @@ SELECT cs_add_index_v1('examples', 'encrypted_small_int', 'ore', 'small_int');
20
20
SELECT cs_add_index_v1(' examples' , ' encrypted_utf8_str' , ' unique' , ' text' , ' {"token_filters": [{"kind": "downcase"}]}' );
21
21
SELECT cs_add_index_v1(' examples' , ' encrypted_utf8_str' , ' match' , ' text' );
22
22
SELECT 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 "}' );
24
24
25
25
-- Add corresponding PG indexes for each CipherStash index
26
26
CREATE 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));
32
32
CREATE UNIQUE INDEX ON examples(cs_unique_v1(encrypted_utf8_str));
33
33
CREATE INDEX ON examples USING GIN (cs_match_v1(encrypted_utf8_str));
34
34
CREATE 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));
36
36
37
37
-- Transition the Encrypt config state from "pending", to "encrypting", and then "active".
38
38
-- The Encrypt config must be "active" for Proxy to use it.
0 commit comments