forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit805f2bb
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 writing out the constantthe long way, as it is done elsewhere in the code.1 parent16e28fc commit805f2bb
1 file changed
+2
-8
lines changedLines changed: 2 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
213 | 213 |
| |
214 | 214 |
| |
215 | 215 |
| |
216 |
| - | |
217 |
| - | |
218 |
| - | |
219 |
| - | |
| 216 | + | |
220 | 217 |
| |
221 | 218 |
| |
222 | 219 |
| |
| |||
243 | 240 |
| |
244 | 241 |
| |
245 | 242 |
| |
246 |
| - | |
247 |
| - | |
248 |
| - | |
249 |
| - | |
| 243 | + | |
250 | 244 |
| |
251 | 245 |
| |
252 | 246 |
| |
|
0 commit comments
Comments
(0)