1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

It includes

-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
This commit is contained in:
Bruce Momjian
2002-10-19 02:16:40 +00:00
parent cabad378fc
commit 8e6b5c8b27
4 changed files with 60 additions and 20 deletions

View File

@ -6,7 +6,8 @@ CREATE FUNCTION "recordchange" () RETURNS trigger AS
CREATE TABLE "MirrorHost" (
"MirrorHostId" serial,
"HostName" varchar NOT NULL
"HostName" varchar NOT NULL,
PRIMARY KEY("MirrorHostId")
);