* Given a relation OID, open and lock the sequence. p_elm and p_rel are * output parameters. */
| 1268 | * output parameters. |
| 1269 | */ |
| 1270 | static void |
| 1271 | init_sequence(Oid relid, SeqTable *p_elm, Relation *p_rel) |
| 1272 | { |
| 1273 | init_sequence_internal(relid, p_elm, p_rel, false); |
| 1274 | } |
| 1275 | |
| 1276 | /* |
| 1277 | * GPDB: init_sequence_internal() mostly resembles upstream init_sequence(). |
no test coverage detected