This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP OPERATOR IF EXISTS @> (cs_encrypted_v1, cs_encrypted_v1); | |
DROP OPERATOR IF EXISTS @> (cs_encrypted_v1, cs_match_index_v1); | |
DROP OPERATOR IF EXISTS @> (cs_match_index_v1, cs_encrypted_v1); | |
DROP OPERATOR IF EXISTS <@ (cs_encrypted_v1, cs_encrypted_v1); | |
DROP OPERATOR IF EXISTS <@ (cs_encrypted_v1, cs_match_index_v1); | |
DROP OPERATOR IF EXISTS <@ (cs_match_index_v1, cs_encrypted_v1); | |
DROP OPERATOR IF EXISTS <= (ore_64_8_v1, cs_encrypted_v1); | |
DROP OPERATOR IF EXISTS <= (cs_encrypted_v1, ore_64_8_v1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- PostgreSQL CipherStash Extension | |
-- | |
-- | |
-- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: - | |
-- | |
CREATE EXTENSION pgcrypto WITH SCHEMA public; |