Skip to content

Commit

Permalink
Stamped release 1.0.6
Browse files Browse the repository at this point in the history
Jan
  • Loading branch information
Jan Wieck authored and Jan Wieck committed Jun 10, 2005
1 parent 13a0c72 commit 89ec75d
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
37 changes: 37 additions & 0 deletions HISTORY-1.0
Expand Up @@ -20,6 +20,43 @@

----------------------------

date: 2005/04/13 21:21:24; author: cbbrowne;
Address synchronization problem where a MOVE_SET event may
get to cascaded subscribers *AFTER* the new origin has started
generating SYNCs. The subscriber ignored those syncs since it doesn't
yet know the origin has moved; this can lead to data loss.

The ACCEPT_SET is added as a remedy; upon submitting the MOVE_SET,
it also raises, on the new origin, an ACCEPT_SET event. That
will necessarily precede any SYNCs coming from the new origin.

Nodes that get the ACCEPT_SET event will wait until they also get
the MOVE_SET event before proceeding, protecting from data loss.

----------------------------

date: 2005/04/13 20:39:32; author: cbbrowne;
Address bug #1226

If a set contains no tables, then warn the user that they may run afoul
of bug #1226.

----------------------------

date: 2005/02/16 22:31:19; author: smsimms;
Add a missing WHERE clause that causes MOVE SET to fail when:
1. There are three or more nodes
2. Sets originate on at least two nodes
3. A set is being moved from a third node to one of the first two.

----------------------------

date: 2005/01/24 18:42:36; author: cbbrowne;
Added in stored function for generating SYNC events

----------------------------


1.0.5 Bugfixes and required minor features

date: 2004/08/26 19:28:07; author: wieck;
Expand Down
4 changes: 2 additions & 2 deletions config.h.in
Expand Up @@ -6,13 +6,13 @@
* Copyright (c) 2003-2004, PostgreSQL Global Development Group
* Author: Jan Wieck, Afilias USA INC.
*
* $Id: config.h.in,v 1.8.2.4 2005-06-09 15:01:43 wieck Exp $
* $Id: config.h.in,v 1.8.2.5 2005-06-10 22:06:30 wieck Exp $
* ----------
*/
#ifndef SLONY_I_CONFIG_H
#define SLONY_I_CONFIG_H

#define SLONY_I_VERSION_STRING "1.0.5"
#define SLONY_I_VERSION_STRING "1.0.6"

#undef PGSHARE

Expand Down
4 changes: 2 additions & 2 deletions src/backend/slony1_funcs.sql
Expand Up @@ -6,7 +6,7 @@
-- Copyright (c) 2003-2004, PostgreSQL Global Development Group
-- Author: Jan Wieck, Afilias USA INC.
--
-- $Id: slony1_funcs.sql,v 1.15.2.16 2005-06-10 21:11:17 wieck Exp $
-- $Id: slony1_funcs.sql,v 1.15.2.17 2005-06-10 22:06:30 wieck Exp $
-- ----------------------------------------------------------------------


Expand Down Expand Up @@ -218,7 +218,7 @@ create or replace function @NAMESPACE@.slonyVersionPatchlevel()
returns int4
as '
begin
return 5;
return 6;
end;
' language plpgsql;

Expand Down

0 comments on commit 89ec75d

Please sign in to comment.