Skip to content

Commit 4956cf1

Browse files
committed
Update create examples table
1 parent d24cad4 commit 4956cf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

languages/python/jupyter_notebook/create_examples_table.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SELECT cs_add_index_v1('examples', 'encrypted_small_int', 'ore', 'small_int');
2020
SELECT cs_add_index_v1('examples', 'encrypted_utf8_str', 'unique', 'text', '{"token_filters": [{"kind": "downcase"}]}');
2121
SELECT cs_add_index_v1('examples', 'encrypted_utf8_str', 'match', 'text');
2222
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"}');
2424

2525
-- Add corresponding PG indexes for each CipherStash index
2626
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));
3232
CREATE UNIQUE INDEX ON examples(cs_unique_v1(encrypted_utf8_str));
3333
CREATE INDEX ON examples USING GIN (cs_match_v1(encrypted_utf8_str));
3434
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));
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

Comments
 (0)