| 4178 | } |
| 4179 | |
| 4180 | char * |
| 4181 | PQescapeIdentifier(PGconn *conn, const char *str, size_t len) |
| 4182 | { |
| 4183 | return PQescapeInternal(conn, str, len, true); |
| 4184 | } |
| 4185 | |
| 4186 | /* HEX encoding support for bytea */ |
| 4187 | static const char hextbl[] = "0123456789abcdef"; |