Re: [HACKERS] Doesn't compile

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: Ole Gjerde <gjerde(at)icebox(dot)org>
Cc: PostgreSQL-development <pgsql-hackers(at)postgreSQL(dot)org>
Subject: Re: [HACKERS] Doesn't compile
Date: 1999-05-21 18:57:25
Message-ID: 199905211857.OAA01571@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> Current CVS doesn't compile on Redhat Linux 6.0.
>
> bison 1.27
> flex 2.5.4a

Just fixed. Try again. Sorry,

>
> Ole Gjerde
>
> --- src/backend/parser/gram.y 1999/05/21 15:47:13 2.81
> +++ src/backend/parser/gram.y 1999/05/21 17:48:46
> @@ -5365,8 +5365,8 @@
> for (pos = 1; n->val.val.str[pos]; pos++)
> {
> if (n->val.val.str[pos] == '|' ||
> - if (n->val.val.str[pos] == '{' ||
> - if (n->val.val.str[pos] == '}')
> + n->val.val.str[pos] == '{' ||
> + n->val.val.str[pos] == '}')
> {
> found_special = true;
> break;
>
>
>
>
>

--
Bruce Momjian | http://www.op.net/~candle
maillist(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

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Edmund Mergl 1999-05-21 20:34:15 strange behavior of UPDATE
Previous Message Ole Gjerde 1999-05-21 17:38:37 Doesn't compile