given operator tuple, return the operator OID */
| 247 | |
| 248 | /* given operator tuple, return the operator OID */ |
| 249 | Oid |
| 250 | oprid(Operator op) |
| 251 | { |
| 252 | return ((Form_pg_operator) GETSTRUCT(op))->oid; |
| 253 | } |
| 254 | |
| 255 | /* given operator tuple, return the underlying function's OID */ |
| 256 | Oid |
no outgoing calls
no test coverage detected