]> granicus.if.org Git - postgresql/commitdiff
Print bit strings as B'...' when INSERT commands are dumped.
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 24 Nov 2000 22:32:26 +0000 (22:32 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 24 Nov 2000 22:32:26 +0000 (22:32 +0000)
src/bin/pg_dump/pg_dump.c

index 0d0fba26a2cb471fd9f295d17cc36c91f4ad3c16..7c55378dee9ef8c2abd9560abc03ad0d40521506 100644 (file)
@@ -22,7 +22,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.180 2000/11/14 18:37:45 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.181 2000/11/24 22:32:26 petere Exp $
  *
  * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
  *
@@ -482,6 +482,11 @@ dumpClasses_dumpData(Archive *fout, char* oid, void *dctxv)
                                        archprintf(fout, "%s",
                                                        PQgetvalue(res, tuple, field));
                                        break;
+                               case ZPBITOID:
+                               case VARBITOID:
+                                       archprintf(fout, "B'%s'",
+                                                          PQgetvalue(res, tuple, field));
+                                       break;
                                default:
 
                                        /*