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
Database Adapter and Versions (postgrex, myxql, etc)
ecto without adapters
Current behavior
Adding parentheses to field names (e.g., q.title()) is accepted and processed as if the parentheses weren't present. This behavior could be misleading.
Example:
# This works:order_by("q",[q],[asc: q.title()])# Same as:order_by("q",[q],[asc: q.title])