| 251 | |
| 252 | #if PY_MAJOR_VERSION < 3 |
| 253 | Datum |
| 254 | plpython2_validator(PG_FUNCTION_ARGS) |
| 255 | { |
| 256 | /* call plpython validator with our fcinfo so it gets our oid */ |
| 257 | return plpython_validator(fcinfo); |
| 258 | } |
| 259 | #endif /* PY_MAJOR_VERSION < 3 */ |
| 260 | |
| 261 | Datum |
nothing calls this directly
no test coverage detected