| 1407 | } |
| 1408 | |
| 1409 | Node * |
| 1410 | gpdb::MakeBoolConst(bool value, bool isnull) |
| 1411 | { |
| 1412 | GP_WRAP_START; |
| 1413 | { |
| 1414 | return makeBoolConst(value, isnull); |
| 1415 | } |
| 1416 | GP_WRAP_END; |
| 1417 | return nullptr; |
| 1418 | } |
| 1419 | |
| 1420 | Node * |
| 1421 | gpdb::MakeNULLConst(Oid type_oid) |
nothing calls this directly
no test coverage detected