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
assertmock_logger.log.call_args_list[1][0][2] =='INSERT INTO "test" SELECT * FROM "source"'
3091
-
assertmock_logger.log.call_args_list[2][0][2] =="<Redacted because SQL contains values>"
3092
-
assertmock_logger.log.call_args_list[3][0][2] =="<Redacted because SQL contains values>"
3091
+
assert (
3092
+
mock_logger.log.call_args_list[2][0][2]
3093
+
=='INSERT INTO "test" ("id", "value") VALUES "<REDACTED VALUES>"'
3094
+
)
3095
+
assert (
3096
+
mock_logger.log.call_args_list[3][0][2]
3097
+
=='INSERT INTO "test" ("id", "value") SELECT CAST("id" AS BIGINT) AS "id", CAST("value" AS TEXT) AS "value" FROM (VALUES "<REDACTED VALUES>") AS "t"("id", "value")'
0 commit comments