<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/postgresql.git/contrib/dbmirror/MirrorSetup.sql, branch master</title>
<subtitle>git.postgresql.org: git/postgresql.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/'/>
<entry>
<title>Remove contrib modules that have been migrated to pgfoundry: adddepend,</title>
<updated>2006-09-05T17:20:29+00:00</updated>
<author>
<name>Tom Lane</name>
<email>tgl@sss.pgh.pa.us</email>
</author>
<published>2006-09-05T17:20:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=af7d257e21aae3d75c46977482309b658b3a29d7'/>
<id>af7d257e21aae3d75c46977482309b658b3a29d7</id>
<content type='text'>
dbase, dbmirror, fulltextindex, mac, userlock; or abandoned: mSQL-interface,
tips.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
dbase, dbmirror, fulltextindex, mac, userlock; or abandoned: mSQL-interface,
tips.
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, in</title>
<updated>2006-02-27T16:09:50+00:00</updated>
<author>
<name>Peter Eisentraut</name>
<email>peter_e@gmx.net</email>
</author>
<published>2006-02-27T16:09:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=7f4f42fa100872507ca10d8e0f7d923acc266ee8'/>
<id>7f4f42fa100872507ca10d8e0f7d923acc266ee8</id>
<content type='text'>
particular get rid of single quotes around language names and old WITH ()
construct.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
particular get rid of single quotes around language names and old WITH ()
construct.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change nextval and other sequence functions to specify their sequence</title>
<updated>2005-10-02T23:50:16+00:00</updated>
<author>
<name>Tom Lane</name>
<email>tgl@sss.pgh.pa.us</email>
</author>
<published>2005-10-02T23:50:16+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=aa731ed8433914641e42f32fec0fcf27f01aab7e'/>
<id>aa731ed8433914641e42f32fec0fcf27f01aab7e</id>
<content type='text'>
argument as a 'regclass' value instead of a text string.  The frontend
conversion of text string to pg_class OID is now encapsulated as an
implicitly-invocable coercion from text to regclass.  This provides
backwards compatibility to the old behavior when the sequence argument
is explicitly typed as 'text'.  When the argument is just an unadorned
literal string, it will be taken as 'regclass', which means that the
stored representation will be an OID.  This solves longstanding problems
with renaming sequences that are referenced in default expressions, as
well as new-in-8.1 problems with renaming such sequences' schemas or
moving them to another schema.  All per recent discussion.
Along the way, fix some rather serious problems in dbmirror's support
for mirroring sequence operations (int4 vs int8 confusion for instance).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
argument as a 'regclass' value instead of a text string.  The frontend
conversion of text string to pg_class OID is now encapsulated as an
implicitly-invocable coercion from text to regclass.  This provides
backwards compatibility to the old behavior when the sequence argument
is explicitly typed as 'text'.  When the argument is just an unadorned
literal string, it will be taken as 'regclass', which means that the
stored representation will be an OID.  This solves longstanding problems
with renaming sequences that are referenced in default expressions, as
well as new-in-8.1 problems with renaming such sequences' schemas or
moving them to another schema.  All per recent discussion.
Along the way, fix some rather serious problems in dbmirror's support
for mirroring sequence operations (int4 vs int8 confusion for instance).
</pre>
</div>
</content>
</entry>
<entry>
<title>Apply patch from Steven Singer for contrib/dbmirror. Changes:</title>
<updated>2004-09-10T04:31:06+00:00</updated>
<author>
<name>Neil Conway</name>
<email>neilc@samurai.com</email>
</author>
<published>2004-09-10T04:31:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=87438cb90e77b2966223de6914e6285e4a8e0b33'/>
<id>87438cb90e77b2966223de6914e6285e4a8e0b33</id>
<content type='text'>
-It fixes up some bugs with handling setval calls
-Adds upgrade instructions from prior versions
-Improved the sample config file
-Fixed some things in the clean_pending script
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-It fixes up some bugs with handling setval calls
-Adds upgrade instructions from prior versions
-Improved the sample config file
-Fixed some things in the clean_pending script
</pre>
</div>
</content>
</entry>
<entry>
<title>Please apply this patch to contrib/dbmirror</title>
<updated>2004-02-17T03:34:35+00:00</updated>
<author>
<name>Bruce Momjian</name>
<email>bruce@momjian.us</email>
</author>
<published>2004-02-17T03:34:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=51b363ec2499a308bb7af23382d25befe6ef5d6c'/>
<id>51b363ec2499a308bb7af23382d25befe6ef5d6c</id>
<content type='text'>
In incorperates changes from myself and a number of contributors.

This update to dbmirror provides:

-replication of sequence operations via setval/nextval
-DBMirror.pl support for logging to syslog
-changed the names of the tables to dbmirror_*  (no quotes required)
-Support for writitng SQL statements to files instead of directly to
 a slave database
-More options for DBMirror.pl in the config files.

Steven Singer
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In incorperates changes from myself and a number of contributors.

This update to dbmirror provides:

-replication of sequence operations via setval/nextval
-DBMirror.pl support for logging to syslog
-changed the names of the tables to dbmirror_*  (no quotes required)
-Support for writitng SQL statements to files instead of directly to
 a slave database
-More options for DBMirror.pl in the config files.

Steven Singer
</pre>
</div>
</content>
</entry>
<entry>
<title>Backend support for autocommit removed, per recent discussions.  The</title>
<updated>2003-05-14T03:26:03+00:00</updated>
<author>
<name>Tom Lane</name>
<email>tgl@sss.pgh.pa.us</email>
</author>
<published>2003-05-14T03:26:03+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=f85f43dfb5b9043ea6b01d8b824c195cd7f9ed3c'/>
<id>f85f43dfb5b9043ea6b01d8b824c195cd7f9ed3c</id>
<content type='text'>
only remnant of this failed experiment is that the server will take
SET AUTOCOMMIT TO ON.  Still TODO: provide some client-side autocommit
logic in libpq.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
only remnant of this failed experiment is that the server will take
SET AUTOCOMMIT TO ON.  Still TODO: provide some client-side autocommit
logic in libpq.
</pre>
</div>
</content>
</entry>
<entry>
<title>It includes</title>
<updated>2002-10-19T02:16:40+00:00</updated>
<author>
<name>Bruce Momjian</name>
<email>bruce@momjian.us</email>
</author>
<published>2002-10-19T02:16:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=8e6b5c8b2763fccdaa6e15b055b244b5c9b8778c'/>
<id>8e6b5c8b2763fccdaa6e15b055b244b5c9b8778c</id>
<content type='text'>
-Support for mirroring tables in different Schema's
-Improved documentation for compiling with 7.1.x and 7.2.x
-Fixes a buffer overrun bug.

Steven Singer
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-Support for mirroring tables in different Schema's
-Improved documentation for compiling with 7.1.x and 7.2.x
-Fixes a buffer overrun bug.

Steven Singer
</pre>
</div>
</content>
</entry>
<entry>
<title>Update /contrib for "autocommit TO 'on'".</title>
<updated>2002-10-18T18:41:22+00:00</updated>
<author>
<name>Bruce Momjian</name>
<email>bruce@momjian.us</email>
</author>
<published>2002-10-18T18:41:22+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=aa4c702eac936964649f905741b4a99f4b489200'/>
<id>aa4c702eac936964649f905741b4a99f4b489200</id>
<content type='text'>
Create objects in public schema.

Make spacing/capitalization consistent.

Remove transaction block use for object creation.

Remove unneeded function GRANTs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Create objects in public schema.

Make spacing/capitalization consistent.

Remove transaction block use for object creation.

Remove unneeded function GRANTs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a bunch of pseudo-types to replace the behavior formerly associated</title>
<updated>2002-08-22T00:01:51+00:00</updated>
<author>
<name>Tom Lane</name>
<email>tgl@sss.pgh.pa.us</email>
</author>
<published>2002-08-22T00:01:51+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=b663f3443ba096a06970214c3e83e79f6e570b84'/>
<id>b663f3443ba096a06970214c3e83e79f6e570b84</id>
<content type='text'>
with OPAQUE, as per recent pghackers discussion.  I still want to do some
more work on the 'cstring' pseudo-type, but I'm going to commit the bulk
of the changes now before the tree starts shifting under me ...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
with OPAQUE, as per recent pghackers discussion.  I still want to do some
more work on the 'cstring' pseudo-type, but I'm going to commit the bulk
of the changes now before the tree starts shifting under me ...
</pre>
</div>
</content>
</entry>
<entry>
<title>Add dbmirror to /contrib.  Minor C cleanups and Makefile.</title>
<updated>2002-06-23T21:58:08+00:00</updated>
<author>
<name>Bruce Momjian</name>
<email>bruce@momjian.us</email>
</author>
<published>2002-06-23T21:58:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/postgresql.git/commit/?id=d64b97ae37c936e27b2ca57f78021c9235282c87'/>
<id>d64b97ae37c936e27b2ca57f78021c9235282c87</id>
<content type='text'>
Steven Singer
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Steven Singer
</pre>
</div>
</content>
</entry>
</feed>
