* fmtQualifiedId - construct a schema-qualified name, with quoting as needed. * * Like fmtId, use the result before calling again. * * Since we call fmtId and it also uses getLocalPQExpBuffer() we cannot * use that buffer until we're finished with calling fmtId(). * * NB: This assumes setFmtEncoding() previously has been called to configure * the encoding of schema/id. It is preferable to
| 304 | * with an explicit encoding. |
| 305 | */ |
| 306 | const char * |
| 307 | fmtQualifiedId(const char *schema, const char *id) |
| 308 | { |
| 309 | return fmtQualifiedIdEnc(schema, id, getFmtEncoding()); |
| 310 | } |
| 311 | |
| 312 | |
| 313 | /* |
no test coverage detected