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
When columnsWithAlias is true, the call to Columns after a query like "select 1 as A" will describe the column as ".A". Is this intended? If yes, this should be documented in the README: ".A" as a column name is unexpected, in particular it can not be used in an "order by" clause.
I'm ignoring the issue for now (no time), but I'd still like to help you with the underlying problem:
you can use the column index in ORDER BY, e.g. ORDER BY 1 asc, 4 desc.
When
columnsWithAlias
is true, the call to Columns after a query like "select 1 as A" will describe the column as ".A". Is this intended? If yes, this should be documented in the README: ".A" as a column name is unexpected, in particular it can not be used in an "order by" clause.(
columnsWithAlias
was introduced in #289.)The text was updated successfully, but these errors were encountered: