Author: turnstep
Date: Sun Jun 24 12:27:32 2007
New Revision: 9676
Modified:
DBD-Pg/trunk/dbdimp.c
Log:
Don't set dollaronly twice.
Modified: DBD-Pg/trunk/dbdimp.c
==============================================================================
--- DBD-Pg/trunk/dbdimp.c (original)
+++ DBD-Pg/trunk/dbdimp.c Sun Jun 24 12:27:32 2007
@@ -878,9 +878,8 @@
imp_sth->seg = NULL;
imp_sth->ph = NULL;
imp_sth->type_info = NULL;
- imp_sth->dollaronly = DBDPG_FALSE;
- /* We inherit our prepare preferences from the database handle */
+ /* We inherit some preferences from the database handle */
imp_sth->server_prepare = imp_dbh->server_prepare;
imp_sth->prepare_now = imp_dbh->prepare_now;
imp_sth->dollaronly = imp_dbh->dollaronly;