| 305 | } |
| 306 | |
| 307 | bool |
| 308 | gpdb::FuncStrict(Oid funcid) |
| 309 | { |
| 310 | GP_WRAP_START; |
| 311 | { |
| 312 | /* catalog tables: pg_proc */ |
| 313 | return func_strict(funcid); |
| 314 | } |
| 315 | GP_WRAP_END; |
| 316 | return false; |
| 317 | } |
| 318 | |
| 319 | bool |
| 320 | gpdb::IsFuncNDVPreserving(Oid funcid) |
nothing calls this directly
no test coverage detected