You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: demos/end-to-end-security/create-trino-tables.yaml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -261,11 +261,11 @@ data:
261
261
262
262
run_query(connection, """
263
263
CREATE TABLE IF NOT EXISTS lakehouse.employees.employees AS
264
-
SELECT 'william.lewis' as username, 'William' as given_name, 'Lewis' as family_name, '[email protected]' as email, NULL as supervisor, 65000 as salary
265
-
UNION ALL SELECT 'sophia.clarke', 'Sophia', 'Clarke', '[email protected]', 'william.lewis', 60000
266
-
UNION ALL SELECT 'daniel.king', 'Daniel', 'King', '[email protected]', 'william.lewis', 60000
264
+
SELECT 'william.lewis' as username, 'William' as given_name, 'Lewis' as family_name, '[email protected]' as email, 'sophia.clarke' as supervisor, 65000 as salary
265
+
UNION ALL SELECT 'sophia.clarke', 'Sophia', 'Clarke', '[email protected]', NULL, 60000
266
+
UNION ALL SELECT 'daniel.king', 'Daniel', 'King', '[email protected]', 'sophia.clarke', 60000
267
267
UNION ALL SELECT 'pamela.scott', 'Pamela', 'Scott', '[email protected]', NULL, 70000
268
268
UNION ALL SELECT 'justin.martin', 'Justin', 'Martin', '[email protected]', 'pamela.scott', 65000
269
-
UNION ALL SELECT 'sophia.clarke', 'Sophia', 'Clarke', 'sophia.clarke@knab.com', 'pamela.scott', 65000
269
+
UNION ALL SELECT 'isla.williams', 'Isla', 'Williams', 'isla.williams@knab.com', 'pamela.scott', 65000
270
270
UNION ALL SELECT 'mark.ketting', 'Mark', 'Ketting', '[email protected]', NULL, 60000
0 commit comments