Chris Browne cbbrowne at lists.slony.info
Wed Mar 14 08:54:09 PDT 2007
Update of /home/cvsd/slony1/slony1-engine/tests/testutf8
In directory main.slony.info:/tmp/cvs-serv8593/tests/testutf8

Modified Files:
	init_schema.sql 
Log Message:
Change UTF8 test to use a serial column rather than forcing a specially
named sequence on it.


Index: init_schema.sql
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/tests/testutf8/init_schema.sql,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** init_schema.sql	8 Dec 2005 23:08:29 -0000	1.2
--- init_schema.sql	14 Mar 2007 15:54:07 -0000	1.3
***************
*** 22,28 ****
  -- Table to perform UTF8 tests (checks multibyte; should be helpful in
  -- preventing problems with Asian character sets too)
- CREATE SEQUENCE utf8_id;
  CREATE TABLE utf8table (
!     id integer not null unique default nextval('utf8_id'),
      string text,
      primary key(id)
--- 22,27 ----
  -- Table to perform UTF8 tests (checks multibyte; should be helpful in
  -- preventing problems with Asian character sets too)
  CREATE TABLE utf8table (
!     id serial,
      string text,
      primary key(id)



More information about the Slony1-commit mailing list