Author: turnstep
Date: Sat Mar 15 19:30:39 2008
New Revision: 10924

Modified:
   DBD-Pg/trunk/Pg.h
   DBD-Pg/trunk/Pg.pm

Log:
Remove remnants of pgquote trace flag.


Modified: DBD-Pg/trunk/Pg.h
==============================================================================
--- DBD-Pg/trunk/Pg.h   (original)
+++ DBD-Pg/trunk/Pg.h   Sat Mar 15 19:30:39 2008
@@ -74,14 +74,12 @@
 #define FLAGS_END      0x04000000
 #define FLAGS_PREFIX   0x08000000
 #define FLAGS_LOGIN    0x10000000
-#define FLAGS_QUOTE    0x20000000
 
 #define TFLIBPQ      (TFLAGS & FLAGS_LIBPQ)
 #define TFSTART      (TFLAGS & FLAGS_START)
 #define TFEND        (TFLAGS & FLAGS_END)
 #define TFPREFIX     (TFLAGS & FLAGS_PREFIX)
 #define TFLOGIN      (TFLAGS & FLAGS_LOGIN)
-#define TFQUOTE      (TFLAGS & FLAGS_QUOTE)
 
 #define TRACE1       (TLEVEL >= 1) /* Avoid using directly: DBI only */
 #define TRACE2       (TLEVEL >= 2) /* Avoid using directly: DBI only */
@@ -96,7 +94,6 @@
 #define TSTART       (TRACE4 || TFSTART) /* Start of a major function */
 #define TEND         (TRACE4 || TFEND)   /* End of a major function   */
 #define TLOGIN       (TRACE5 || TFLOGIN) /* Connect and disconnect    */
-#define TSTARTQ      (TRACE6 || TFQUOTE) /* Quote functions           */
 
 #define TRACEWARN    (TRACE1) /* Non-fatal but serious problems */
 

Modified: DBD-Pg/trunk/Pg.pm
==============================================================================
--- DBD-Pg/trunk/Pg.pm  (original)
+++ DBD-Pg/trunk/Pg.pm  Sat Mar 15 19:30:39 2008
@@ -1929,11 +1929,6 @@
 is attempted, a message when the connection was successful, and a message 
right after 
 the database has been disconnected. Also output if trace level is 5 or greater.
 
-=item pgquote
-
-Outputs a message at the start of each quoting function. Not very useful 
outside of 
-DBD::Pg internal debugging purposes.
-
 =back
 
 See the DBI section on L<TRACING> for more information.

Reply via email to