summaryrefslogtreecommitdiff
path: root/feature-tests/escape-identifier.c
blob: 8188cbf639d78b50315131b33b3e93bee3eacad3 (plain)
1
2
3
4
5
6
#include <libpq-fe.h>
int main(void)
{
   PGconn *conn = NULL; /* Bork */
   return PQescapeIdentifier(conn, "test", 4) != NULL;
}