(sql, *multiparams, **params)
| 1064 | buf = StringIO() |
| 1065 | |
| 1066 | def dump(sql, *multiparams, **params): |
| 1067 | buf.write(str(sql.compile(dialect=engine.dialect))) |
| 1068 | |
| 1069 | engine = create_mock_engine("postgresql+psycopg2://", executor=dump) |
| 1070 | return engine, buf |
no test coverage detected