| 13 | |
| 14 | In the end the following should work: |
| 15 | {{{ |
| 16 | rasql -q 'select -1125899906842624ll' |
| 17 | rasql -q 'select 1125899906842624ull' |
| 18 | rasql -q 'select <[0:0] -1125899906842624ll>' |
| 19 | rasql -q 'select <[0:0] 1125899906842624ull>' |
| 20 | rasql -q 'select add_cells(<[0:0] -1125899906842624ll>)' |
| 21 | rasql -q 'select add_cells(<[0:0] 1125899906842624ull>)' |
| 22 | rasql -q 'create collection testlonglong LongLongSet' |
| 23 | rasql -q 'create collection testulonglong ULongLongSet' |
| 24 | rasql -q 'insert into testlonglong values <[0:0,0:0] -1125899906842624ll>' |
| 25 | rasql -q 'insert into testulonglong values <[0:0,0:0] 1125899906842624ull>' |
| 26 | rasql -q 'select add_cells(c) from testlonglong as c' |
| 27 | rasql -q 'select add_cells(c) from testlonglong as c' |
| 28 | }}} |