Author: byterock
Date: Fri Apr 17 11:19:17 2009
New Revision: 12707

Modified:
   dbd-oracle/trunk/Changes
   dbd-oracle/trunk/Oracle.xs
   dbd-oracle/trunk/dbdimp.c

Log:
fix from RT cpan and a debug that got into the .xs file

Modified: dbd-oracle/trunk/Changes
==============================================================================
--- dbd-oracle/trunk/Changes    (original)
+++ dbd-oracle/trunk/Changes    Fri Apr 17 11:19:17 2009
@@ -1,4 +1,6 @@
 =head1 Changes in DBD-Oracle 1.23(svn rev #####)
+  Fix from rt.cpan.org ticket #=44788 bool in_lite should be char in_literal 
+  Fix for UTF8 and blobs by John Scoles with Milo van der Leij
   Fix for some warnings and one bug in ocitrace.h from Charles Jardine
   Fix in case there may be a bug in 11 where the OCI_ATTR_DATA_SIZE my return 
0 which should never happen, John Scoles
   Fix on the Makefile.PL for a possible sql bug in IC from Martin Evans

Modified: dbd-oracle/trunk/Oracle.xs
==============================================================================
--- dbd-oracle/trunk/Oracle.xs  (original)
+++ dbd-oracle/trunk/Oracle.xs  Fri Apr 17 11:19:17 2009
@@ -373,7 +373,6 @@
        ST(0) = &sv_undef;
                return;
        }
-       PerlIO_printf(DBILOGFP, " csform=%d\n",csform);
 #ifdef OCI_ATTR_CHARSET_ID
        /* Effectively only used so AL32UTF8 works properly */
        OCILobCharSetId_log_stat( imp_dbh->envhp, imp_dbh->errhp, locator, 
&csid, status );

Modified: dbd-oracle/trunk/dbdimp.c
==============================================================================
--- dbd-oracle/trunk/dbdimp.c   (original)
+++ dbd-oracle/trunk/dbdimp.c   Fri Apr 17 11:19:17 2009
@@ -1153,7 +1153,7 @@
 {
 dTHX;
 D_imp_dbh_from_sth;
-bool in_literal = '\0';
+char in_literal = '\0';
 char in_comment = '\0';
 char *src, *start, *dest;
 phs_t phs_tpl;

Reply via email to