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
columnFromVar tries to determine the index of the type information in the cinfos array using
var arrayIndex = int(variable.varattno - 1)
However in some cases varattno is negative, causing unpredictable results
The tactical solution is to put a range check on the index.
More work is needed to understand why this value is negative and identify potential bugs further upstream #186
The text was updated successfully, but these errors were encountered:
kaidaguerre
changed the title
EOF and query crashed caused by invalid index in qualFromBoolExpr, called from qualFromBoolExpr
EOF and query crashed caused by invalid index in columnFromVar, called from qualFromBoolExpr
May 20, 2022
columnFromVar tries to determine the index of the type information in the cinfos array using
However in some cases varattno is negative, causing unpredictable results
The tactical solution is to put a range check on the index.
More work is needed to understand why this value is negative and identify potential bugs further upstream
#186
The text was updated successfully, but these errors were encountered: