Rename tuturials for char2/char16 removal.
authorBruce Momjian <bruce@momjian.us>
Thu, 8 Jul 1999 15:28:51 +0000 (15:28 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 8 Jul 1999 15:28:51 +0000 (15:28 +0000)
src/tutorial/advanced.source

index b14ba6d9d52281e9615249fcba1bb02198501394..66f607aa1b0c5e017692ea933b42f6d3172cbbe9 100644 (file)
@@ -28,7 +28,7 @@ CREATE TABLE cities (
 );
 
 CREATE TABLE capitals (
-       state           char2
+       state           char(2)
 ) INHERITS (cities);
 
 -- now, let's populate the tables
@@ -90,7 +90,7 @@ WHERE c.altitude > 500;
 CREATE TABLE sal_emp (
        name    text,
        pay_by_quarter  int4[],
-       schedule        char16[][]
+       schedule        text[][]
 );
 
 -- insert instances with array attributes.  Note the use of braces