Re: tutorial-fk.patch

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: tfo(at)monsterlabs(dot)com
Cc: pgsql-docs(at)postgresql(dot)org
Subject: Re: tutorial-fk.patch
Date: 2002-02-18 23:45:02
Message-ID: 200202182345.g1INj2c17200@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs


Patch already submitted by someone else. Already fixed. Thanks.

---------------------------------------------------------------------------

tfo(at)monsterlabs(dot)com wrote:
> the tutorial docs have a pretty egregious bug in introducing people to foreign keys, so i figured i'd go ahead and provide a quick patch.
>
> anyway, the offending URL is
>
> http://developer.postgresql.org/docs/postgres/tutorial-fk.html
>
> an example patch is
>
> --- old/tutorial-fk.html Wed Feb 6 10:58:36 2002
> +++ new/tutorial-fk.html Wed Feb 6 11:08:40 2002
> @@ -141,7 +141,7 @@
> );
>
> CREATE TABLE weather (
> - city varchar(80) references weather,
> + city varchar(80) references cities(name),
> temp_lo int,
> temp_hi int,
> prcp real,
> @@ -238,4 +238,4 @@
> ></DIV
> ></BODY
> ></HTML
> ->
> \ No newline at end of file
> +>
>
> enjoy!
>
> -tfo
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

Browse pgsql-docs by date

  From Date Subject
Next Message Jack Gill 2002-02-20 21:55:17 Readme.Linux?
Previous Message Bruce Momjian 2002-02-18 22:14:35 Re: patches