|
8 | 8 | TRUNCATE TABLE eql_v1_configuration;
|
9 | 9 |
|
10 | 10 | -- Create a table with a plaintext column
|
11 |
| --- DROP TABLE IF EXISTS users; |
| 11 | +DROP TABLE IF EXISTS users; |
12 | 12 | CREATE TABLE users
|
13 | 13 | (
|
14 | 14 | id bigint GENERATED ALWAYS AS IDENTITY,
|
@@ -63,7 +63,7 @@ $$ LANGUAGE plpgsql;
|
63 | 63 | TRUNCATE TABLE eql_v1_configuration;
|
64 | 64 |
|
65 | 65 | -- Create a table with multiple plaintext columns
|
66 |
| --- DROP TABLE IF EXISTS users; |
| 66 | +DROP TABLE IF EXISTS users; |
67 | 67 | CREATE TABLE users
|
68 | 68 | (
|
69 | 69 | id bigint GENERATED ALWAYS AS IDENTITY,
|
@@ -119,7 +119,7 @@ $$ LANGUAGE plpgsql;
|
119 | 119 | -- The schema should be validated first.
|
120 | 120 | -- Users table does not exist, so should fail.
|
121 | 121 | -- -----------------------------------------------
|
122 |
| --- DROP TABLE IF EXISTS users; |
| 122 | +DROP TABLE IF EXISTS users; |
123 | 123 | TRUNCATE TABLE eql_v1_configuration;
|
124 | 124 |
|
125 | 125 |
|
@@ -148,7 +148,7 @@ $$ LANGUAGE plpgsql;
|
148 | 148 | --
|
149 | 149 | -- Schema validation is skipped
|
150 | 150 | -- -----------------------------------------------
|
151 |
| --- DROP TABLE IF EXISTS users; |
| 151 | +DROP TABLE IF EXISTS users; |
152 | 152 | TRUNCATE TABLE eql_v1_configuration;
|
153 | 153 |
|
154 | 154 | DO $$
|
@@ -194,7 +194,7 @@ INSERT INTO eql_v1_configuration (state, data) VALUES (
|
194 | 194 | );
|
195 | 195 |
|
196 | 196 | -- Create a table with plaintext and encrypted columns
|
197 |
| --- DROP TABLE IF EXISTS users; |
| 197 | +DROP TABLE IF EXISTS users; |
198 | 198 | CREATE TABLE users
|
199 | 199 | (
|
200 | 200 | id bigint GENERATED ALWAYS AS IDENTITY,
|
@@ -244,7 +244,7 @@ INSERT INTO eql_v1_configuration (state, data) VALUES (
|
244 | 244 | );
|
245 | 245 |
|
246 | 246 | -- Create a table with plaintext and jsonb column
|
247 |
| --- DROP TABLE IF EXISTS users; |
| 247 | +DROP TABLE IF EXISTS users; |
248 | 248 | CREATE TABLE users
|
249 | 249 | (
|
250 | 250 | id bigint GENERATED ALWAYS AS IDENTITY,
|
@@ -295,7 +295,7 @@ INSERT INTO eql_v1_configuration (state, data) VALUES (
|
295 | 295 |
|
296 | 296 |
|
297 | 297 | -- Create a table with multiple plaintext columns
|
298 |
| --- DROP TABLE IF EXISTS users; |
| 298 | +DROP TABLE IF EXISTS users; |
299 | 299 | CREATE TABLE users
|
300 | 300 | (
|
301 | 301 | id bigint GENERATED ALWAYS AS IDENTITY,
|
|
0 commit comments