Chris Browne cbbrowne at lists.slony.info
Tue Aug 21 15:15:46 PDT 2007
Update of /home/cvsd/slony1/slony1-engine/src/backend
In directory main.slony.info:/tmp/cvs-serv6324

Modified Files:
	slony1_base.sql 
Log Message:
Add comments on new tables


Index: slony1_base.sql
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/src/backend/slony1_base.sql,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** slony1_base.sql	20 Aug 2007 18:22:25 -0000	1.36
--- slony1_base.sql	21 Aug 2007 22:15:44 -0000	1.37
***************
*** 543,546 ****
--- 543,547 ----
  comment on table @NAMESPACE at .sl_config_lock is 'This table exists solely to prevent overlapping execution of configuration change procedures and the resulting possible deadlocks.
  ';
+ comment on column @NAMESPACE at .sl_config_lock.dummy is 'No data ever goes in this table so the contents never matter.  Indeed, this column does not really need to exist.';
  
  create type @NAMESPACE at .vactables as (nspname name, relname name);
***************
*** 559,562 ****
--- 560,565 ----
  comment on table @NAMESPACE at .sl_archive_counter is 'Table used to generate the log shipping archive number.
  ';
+ comment on column @NAMESPACE at .sl_archive_counter.ac_num is 'Counter of SYNC ID used in log shipping as the archive number';
+ comment on column @NAMESPACE at .sl_archive_counter.ac_timestamp is 'Time at which the archive log was generated on the subscriber';
  
  insert into @NAMESPACE at .sl_archive_counter (ac_num, ac_timestamp)



More information about the Slony1-commit mailing list