From: Bruce Momjian Date: Thu, 8 Jul 1999 15:28:51 +0000 (+0000) Subject: Rename tuturials for char2/char16 removal. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=65e53979cfef729e6c7112d4b843d24ed9a53e5f;p=users%2Fbernd%2Fpostgres.git Rename tuturials for char2/char16 removal. --- diff --git a/src/tutorial/advanced.source b/src/tutorial/advanced.source index b14ba6d9d5..66f607aa1b 100644 --- a/src/tutorial/advanced.source +++ b/src/tutorial/advanced.source @@ -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