forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitfb279fc
committed
Use correct symbol for minimum int64 value
The old code used SEQ_MINVALUE to get the smallest int64 value. Thiswas done as a convenience to avoid having to deal with INT64_IS_BUSTED,but that is obsolete now. Also, it is incorrect because the smallestint64 value is actually SEQ_MINVALUE-1. Fix by using PG_INT64_MIN.1 parent884bae1 commitfb279fc
1 file changed
+2
-8
lines changedLines changed: 2 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
223 | 223 |
| |
224 | 224 |
| |
225 | 225 |
| |
226 |
| - | |
227 |
| - | |
228 |
| - | |
229 |
| - | |
| 226 | + | |
230 | 227 |
| |
231 | 228 |
| |
232 | 229 |
| |
| |||
250 | 247 |
| |
251 | 248 |
| |
252 | 249 |
| |
253 |
| - | |
254 |
| - | |
255 |
| - | |
256 |
| - | |
| 250 | + | |
257 | 251 |
| |
258 | 252 |
| |
259 | 253 |
| |
|
0 commit comments
Comments
(0)