Closed mathias-mcb closed 7 years ago
… query builder
If you work with column types "BigInt" your OData endpoint requires filter expressions like: $filter=(CD lt 1487257323585L)
$filter=(CD lt 1487257323585L)
So my column is CD and my filter value is 1487257323585.
CD
1487257323585
In my HANA OData implementation the endpoint wouldn't accept $filter=(CD lt 1487257323585) because the value exceeds Integer range.
$filter=(CD lt 1487257323585)
So I think odxl should support the 123L notation.
Thanks! Much appreciated :)
After accepting the pull request I made a change in the querybuilder: instead of immediately returning the value, I added it to the str variable to maintain a single point of exit.
… query builder
If you work with column types "BigInt" your OData endpoint requires filter expressions like:
$filter=(CD lt 1487257323585L)
So my column is
CD
and my filter value is1487257323585
.In my HANA OData implementation the endpoint wouldn't accept
$filter=(CD lt 1487257323585)
because the value exceeds Integer range.So I think odxl should support the 123L notation.