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
SELECT StringProp, IntegerProp FROM DalgoE2E_E2ETest1
Column names comes to the func (r *Relation) Attribute(name string) (int, Attribute, error) in original CamelCase but are in lower case in Relation.attrIndex.
I believe this line should bring the name to lowercase like:
index, ok:=r.attrIndex[strings.ToLower(name)]
The text was updated successfully, but these errors were encountered:
trakhimenok
changed the title
Bug(regression): Relation attrIndex keys are in lower case but looks is not
Bug(regression): Relation attrIndex keys are in lower case but lookup is not
Aug 21, 2023
Started to get this error after upgrading from
v0.0.1
tov0.1.0
:"attribute not defined"
I have this table definition:
And am trying to query data as:
Column names comes to the
func (r *Relation) Attribute(name string) (int, Attribute, error)
in original CamelCase but are in lower case inRelation.attrIndex
.I believe this line should bring the
name
to lowercase like:The text was updated successfully, but these errors were encountered: