CVS User Account cvsuser
Thu Jul 29 21:29:18 PDT 2004
Log Message:
-----------
Remove an extra "public." namespace reference because the namespace is
being drawn in from the database query.

Modified Files:
--------------
    slony1-engine/tools/altperl:
        README (r1.1 -> r1.2)
        build_env.pl (r1.1 -> r1.2)

-------------- next part --------------
Index: build_env.pl
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tools/altperl/build_env.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -Ltools/altperl/build_env.pl -Ltools/altperl/build_env.pl -u -w -r1.1 -r1.2
--- tools/altperl/build_env.pl
+++ tools/altperl/build_env.pl
@@ -82,21 +82,21 @@
 if ( scalar(@tablesWithIndexes) > 1 ) {
   print '@KEYEDTABLES=(' . "\n";
   foreach my $table (sort @tablesWithIndexes) {
-    print "\t\"public.$table\",\n";
+    print "\t\"$table\",\n";
   }
   print ");\n";
 }
 if ( scalar(@tablesWithoutIndexes) > 1 ) {
   print '@SERIALTABLES=(' . "\n";
   foreach my $table (sort @tablesWithoutIndexes) {
-    print "\t\"public.$table\",\n";
+    print "\t\"$table\",\n";
   }
   print ");\n";
 }
 if ( scalar(@sequences) > 1 ) {
   print '@SEQUENCES=(' . "\n";
   foreach my $table (sort @sequences) {
-    print "\t\"public.$table\",\n";
+    print "\t\"$table\",\n";
   }
   print ");\n";
 }
Index: README
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tools/altperl/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -Ltools/altperl/README -Ltools/altperl/README -u -w -r1.1 -r1.2
--- tools/altperl/README
+++ tools/altperl/README
@@ -35,6 +35,7 @@
    done
 
 Steps to start up replication
+-------------------------------
 
 0.  Dump from source system to destination
  pg_dump -s -c  flex1 | psql flex2


More information about the Slony1-commit mailing list