Skip to content

Commit 351845c

Browse files
committed
test(sqlx): add operator class tests (41 assertions)
1 parent 603c4d0 commit 351845c

File tree

3 files changed

+812
-0
lines changed

3 files changed

+812
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
-- Fixture for encryptindex tests
2+
-- Referenced by: tests/sqlx/tests/encryptindex_tests.rs
3+
--
4+
-- Creates a users table with plaintext columns for testing encrypted column
5+
-- creation and management operations
6+
7+
DROP TABLE IF EXISTS users CASCADE;
8+
CREATE TABLE users (
9+
id bigint GENERATED ALWAYS AS IDENTITY,
10+
name TEXT,
11+
email INT,
12+
PRIMARY KEY(id)
13+
);

0 commit comments

Comments
 (0)