forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork0
Commit4c0ec9e
committed
Use platform independent type for TupleTableSlot->tts_off.
Previously tts_off was, for unknown reasons, of type long. For onethat's unnecessary as tuples are restricted in length, for anotherlong would be a bad choice of type even if that weren't the case, asit's not reliably wider than an int. Also HeapTupleHeader->t_len is auint32.This is split off from a larger patch implementing JITed tupledeforming. Seems like an independent improvement, as tiny as it is.Author: Andres Freund1 parentc2ff42c commit4c0ec9e
File tree
2 files changed
+3
-3
lines changed- src
- backend/access/common
- include/executor
2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
942 | 942 | | |
943 | 943 | | |
944 | 944 | | |
945 | | - | |
| 945 | + | |
946 | 946 | | |
947 | 947 | | |
948 | 948 | | |
| |||
1043 | 1043 | | |
1044 | 1044 | | |
1045 | 1045 | | |
1046 | | - | |
| 1046 | + | |
1047 | 1047 | | |
1048 | 1048 | | |
1049 | 1049 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
129 | | - | |
| 129 | + | |
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
| |||
0 commit comments
Comments
(0)