| Split a path into column , prefix and suffix, the prefix contains all
info up to the column
ie: avg(amount) -> amount , avg( , )
ie: sum (accounts.amount) as theSum -> accounts.amount , sum( , ) as
theSum
ie: count( distinct id ) as bla -> id , count(distinct , ) as bla
Supports simple expressions ie: price * 1.05
TODO: cannot resolve multiple attributes in expression
ie: price - bonus
Parameters: aPath - PathInfo |