You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/sql/toast_decrypt.sql

9 lines
191 B

CREATE EXTENSION pg_tde;
CREATE TABLE src (f1 TEXT STORAGE EXTERNAL) USING pg_tde;
INSERT INTO src VALUES(repeat('abcdeF',1000));
SELECT * FROM src;
DROP TABLE src;
DROP EXTENSION pg_tde;