{DistributionId}.DEFAULT.
For example, if the distribution has column types [varchar, integer], the default key range lower bound is ["", -9223372036854775808].
How to Use It
Given a distribution with key rangekr1 starting “From 0”, you can add a default shard:
How It Works
The default shard is implemented as a special key range with ID{distribution_id}.DEFAULT that covers the minimum possible value for your column types:
| Column Type | Default Lower Bound |
|---|---|
integer | -9223372036854775808 (MinInt64) |
uinteger | 0 |
varchar | "" (empty string) |
varchar hash | 0 |