Second question about `SQLConnector` in SDK. What...
# singer-tap-development
a
Second question about
SQLConnector
in SDK. What was the reasoning behind
echo=True
parameter in
create_sqlalchemy_engine
? In my case it results in some of the SQL logs being printed to stdout, which results in parse errors in receiving target.
Basically overriding with
echo=False
fixed this issue.
a
Thanks for raising. This sounds like a bug 🐛. I think there's a case for printing the SQL statements for debugging purposes, but definitely would not want this printed to stdout.
a
Maybe some custom logging to stderr for
sqlalchemy.engine.Engine
can be added for debug purposes