Skip to content

Commit 606d5c9

Browse files
committed
ci: Update benchmark schema to use EQL 2.0
1 parent de490d4 commit 606d5c9

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

tests/benchmark/sql/benchmark-schema.sql

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ DROP TABLE IF EXISTS benchmark_encrypted;
1111
CREATE TABLE benchmark_encrypted (
1212
id serial primary key,
1313
username text,
14-
email cs_encrypted_v1
14+
email eql_v1_encrypted,
15+
1516
);
1617

17-
SELECT cs_add_column_v1(
18+
SELECT eql_v1.add_column(
1819
'benchmark_encrypted',
1920
'email'
2021
);
2122

22-
SELECT cs_encrypt_v1();
23-
SELECT cs_activate_v1();
23+
SELECT eql_v1.encrypt();
24+
SELECT eql_v1.activate();
25+

0 commit comments

Comments
 (0)