mirror of
https://github.com/corda/corda.git
synced 2024-12-23 23:02:29 +00:00
416d4ecaeb
Vault queries: 'order by' function aggregation e.g. 'order by sum(col)' is replaced by the position of the selected column (e.g. 'order by 1'). Rationale: NonStop database doesn't support aggregation function in order by clause e.g. 'order by (sum col_x)'. I couldn't find a way to force Hibernate to produce alias e.g. ' select sum(col_x) as alias_x... order by also_x ...', and the only solution supported by all db an HPE NonStop is to use positional parameter e.g. 'select sum(col_x) as alias_x... order by 1 ...' |
||
---|---|---|
.. | ||
capsule | ||
lib | ||
src | ||
build.gradle |