Column functions like as are mutating the Column state for all future references to the column. For example, if a query uses user.name.as('user name'), the 'user_name' alias will be used in all future queries with the user.name column. Tests are currently not picking this error up.
Opening a pull request with updated tests and a fix shortly.
Column functions like
asare mutating the Column state for all future references to the column. For example, if a query usesuser.name.as('user name'), the'user_name'alias will be used in all future queries with theuser.namecolumn. Tests are currently not picking this error up.Opening a pull request with updated tests and a fix shortly.