Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
vertica#56 The encryption_package can now be updated without uninstal…
Browse files Browse the repository at this point in the history
…ling it first

vertica#56 The encryption_package can now be updated without uninstalling it first.
  • Loading branch information
nicolasriousset committed Feb 15, 2018
1 parent d065f52 commit d195b15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions encryption_package/ddl/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ select version();

\set libfile '\''`pwd`'/lib/Encryption.so\'';

CREATE LIBRARY Encryption as :libfile;
CREATE FUNCTION AESEncrypt as language 'C++' name 'AESEncryptFactory' library Encryption;
CREATE FUNCTION AESDecrypt as language 'C++' name 'AESDecryptFactory' library Encryption;
CREATE OR REPLACE LIBRARY Encryption as :libfile;
CREATE OR REPLACE FUNCTION AESEncrypt as language 'C++' name 'AESEncryptFactory' library Encryption;
CREATE OR REPLACE FUNCTION AESDecrypt as language 'C++' name 'AESDecryptFactory' library Encryption;


0 comments on commit d195b15

Please sign in to comment.