| 1230 | } |
| 1231 | |
| 1232 | List * |
| 1233 | gpdb::LPrependOid(Oid datum, List *list) |
| 1234 | { |
| 1235 | GP_WRAP_START; |
| 1236 | { |
| 1237 | return lcons_oid(datum, list); |
| 1238 | } |
| 1239 | GP_WRAP_END; |
| 1240 | return NIL; |
| 1241 | } |
| 1242 | |
| 1243 | List * |
| 1244 | gpdb::ListConcat(List *list1, List *list2) |
nothing calls this directly
no test coverage detected