summaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
authorHiroshi Inoue2008-05-03 05:57:42 +0000
committerHiroshi Inoue2008-05-03 05:57:42 +0000
commit2f247b75d0e56b9ce407c91a3494228da518739e (patch)
tree4a36a33315a851b7128963cdd89731ce2ec836bf /loadlib.c
parent503a02867d4ae1a65af11fd6e4dd91cc499838d1 (diff)
1. Fix a bug in socket which uses a socket variable.
2. Support column alias without "as" so that links from the SQLServer work. 3. Take ';' into account when the driver adds "for read only" clause. 4. Use the E'.. ' notation not only in '=' expressions but also in LIKE expressions. 5. Change to return milliseconds parts for timestamp fields. 6. Change to return a specific sqlstate in case of multiple parameters.
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loadlib.c b/loadlib.c
index 88c0b84..1ad6348 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -222,9 +222,9 @@ void *CALL_PQconnectdb(const char *conninfo, BOOL *libpqLoaded)
{
loaded_libpq = TRUE;
/* ssllibs are already loaded by libpq
- if (PQgetssl(pqconn)) */
+ if (PQgetssl(pqconn))
loaded_ssllib = TRUE;
-
+ */
}
#else
pqconn = PQconnectdb(conninfo);