| 20 | #include <metadata/metadata_cache.h> |
| 21 | |
| 22 | inline static Const * |
| 23 | MakeTextConst(const char *cstring, uint32_t stringLength) |
| 24 | { |
| 25 | text *textValue = cstring_to_text_with_len(cstring, stringLength); |
| 26 | return makeConst(TEXTOID, -1, DEFAULT_COLLATION_OID, -1, PointerGetDatum(textValue), |
| 27 | false, |
| 28 | false); |
| 29 | } |
| 30 | |
| 31 | |
| 32 | inline static Const * |
no outgoing calls
no test coverage detected