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
We had to disable error logging coming from dat- especially since some queries are extremely long and we don't want to print them when a query crashes. Doing so started generating pointer dereferences in sqlx-runner/execer.go when trying to access res.RowsAffected, meaning res is nil.
Doing some digging, it turns out the exec function is returning nil for both values, even when an error should be returned. In fact, logSQLError now seems to be returning nil, even if the parameter isn't.
Our environment variable is set to LOGXI=dat*=OFF.
I'm not sure if this is an intended behavior of the logger, but it is generating some extremely bad side-effects on our production environment.
The text was updated successfully, but these errors were encountered:
We had to disable error logging coming from dat- especially since some queries are extremely long and we don't want to print them when a query crashes. Doing so started generating pointer dereferences in
sqlx-runner/execer.go
when trying to accessres.RowsAffected
, meaningres
isnil
.Doing some digging, it turns out the
exec
function is returningnil
for both values, even when an error should be returned. In fact,logSQLError
now seems to be returningnil
, even if the parameter isn't.Our environment variable is set to
LOGXI=dat*=OFF
.I'm not sure if this is an intended behavior of the logger, but it is generating some extremely bad side-effects on our production environment.
The text was updated successfully, but these errors were encountered: