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
It would be nice if the sql logger would quote params in the printed queries to make it easier to copy/paste into a CLI client for closer optimization/examination.
Eg instead of:
sql SELECT ...
FROM foo
WHERE foo.name = bob sql Found 1 matching rows
it would print:
sql SELECT ...
FROM foo
WHERE foo.name = "bob" sql Found 1 matching rows