Skip to content

Commit 86fa6ab

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

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

tests/benchmark/sql/benchmark-schema.sql

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ 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
1515
);
1616

17-
SELECT cs_add_column_v1(
17+
SELECT eql_v1.add_column(
1818
'benchmark_encrypted',
1919
'email'
2020
);
2121

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

0 commit comments

Comments
 (0)