Can't insert u64::max value in a global table
picodata 24.7.0-1001-g94c5755f, static, debug
tarantool (fork) version: 2.11.2-168-gfbd76a19c
target: Linux 5.15.167.4-microsoft-standard-WSL2 x86_64 GNU/Linux
picodata> CREATE TABLE T (uid UNSIGNED PRIMARY KEY, iid INTEGER) DISTRIBUTED GLOBALLY
2024-12-16 13:01:21.322 [41369] main/104/interactive schema.rs:2229 W> `sharding_fn` is specified but will be ignored, as `distribution` is `global`
2024-12-16 13:01:21.422 [41369] main/115/governor_loop I> applying pending schema change
2024-12-16 13:01:21.422 [41369] main/115/governor_loop I> calling proc_apply_schema_change, instance_name: i1
2024-12-16 13:01:21.423 [41369] main/115/governor_loop I> applied schema change on instance, instance_name: i1
2024-12-16 13:01:21.423 [41369] main/115/governor_loop I> finalizing schema change, op: DdlCommit
2024-12-16 13:01:21.523 [41369] main/104/interactive I> calling proc_wait_index, instance_name: i1
2024-12-16 13:01:21.523 [41369] main/115/governor_loop I> nothing to do, waiting for events to handle
---
- row_count: 1
...
picodata> \s l lua
---
- true
...
picodata> pico.sql( [[ INSERT INTO T VALUES (?, ?), (?, ?) ]], {0, -9223372036854775808, 9223372036854775807, 18446744073709551615 })
---
- row_count: 2
...
picodata> select * from t;
---
- metadata:
- {'name': 'uid', 'type': 'unsigned'}
- {'name': 'iid', 'type': 'integer'}
rows:
- [0, -9223372036854775808]
- [9223372036854775808, 9223372036854775807]
...