Skip to content

Commit 30f12ad

Browse files
authored
fix: e2e-security demo employees (#45)
1 parent 7fcec9f commit 30f12ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demos/end-to-end-security/create-trino-tables.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ data:
261261
262262
run_query(connection, """
263263
CREATE TABLE IF NOT EXISTS lakehouse.employees.employees AS
264-
SELECT 'william.lewis' as username, 'William' as given_name, 'Lewis' as family_name, 'william.lewis@knab.com' as email, 'sophia.clarke' as supervisor, 65000 as salary
265-
UNION ALL SELECT 'sophia.clarke', 'Sophia', 'Clarke', 'sophia.clarke@knab.com', NULL, 60000
264+
SELECT 'sophia.clarke' as username, 'Sophia' as given_name, 'Clarke' as family_name, 'sophia.clarke@knab.com' as email, NULL as supervisor, 65000 as salary
265+
UNION ALL SELECT 'william.lewis', 'William', 'Lewis', 'william.lewis@knab.com', 'sophia.clarke', 60000
266266
UNION ALL SELECT 'daniel.king', 'Daniel', 'King', '[email protected]', 'sophia.clarke', 60000
267267
UNION ALL SELECT 'pamela.scott', 'Pamela', 'Scott', '[email protected]', NULL, 70000
268268
UNION ALL SELECT 'justin.martin', 'Justin', 'Martin', '[email protected]', 'pamela.scott', 65000

0 commit comments

Comments
 (0)