| 7110 | } |
| 7111 | |
| 7112 | PGVerbosity |
| 7113 | PQsetErrorVerbosity(PGconn *conn, PGVerbosity verbosity) |
| 7114 | { |
| 7115 | PGVerbosity old; |
| 7116 | |
| 7117 | if (!conn) |
| 7118 | return PQERRORS_DEFAULT; |
| 7119 | old = conn->verbosity; |
| 7120 | conn->verbosity = verbosity; |
| 7121 | return old; |
| 7122 | } |
| 7123 | |
| 7124 | PGContextVisibility |
| 7125 | PQsetErrorContextVisibility(PGconn *conn, PGContextVisibility show_context) |
no outgoing calls
no test coverage detected