CVS User Account cvsuser
Thu Dec 8 23:09:21 PST 2005
Log Message:
-----------
Fixed creation of UTF8 table

Modified Files:
--------------
    slony1-engine/tests/testutf8:
        init_schema.sql (r1.1 -> r1.2)

-------------- next part --------------
Index: init_schema.sql
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/tests/testutf8/init_schema.sql,v
retrieving revision 1.1
retrieving revision 1.2
diff -Ltests/testutf8/init_schema.sql -Ltests/testutf8/init_schema.sql -u -w -r1.1 -r1.2
--- tests/testutf8/init_schema.sql
+++ tests/testutf8/init_schema.sql
@@ -21,11 +21,10 @@
 
 -- Table to perform UTF8 tests (checks multibyte; should be helpful in
 -- preventing problems with Asian character sets too)
-create table utf8table (
+CREATE SEQUENCE utf8_id;
+CREATE TABLE utf8table (
     id integer not null unique default nextval('utf8_id'),
     string text,
     primary key(id)
 );
-
-create sequence utf8_id;
 INSERT INTO utf8table (string) VALUES ('1b\303\241r') ;


More information about the Slony1-commit mailing list