Re:

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: moritz(dot)gmelin(at)fzi(dot)de, pgsql-bugs(at)postgresql(dot)org
Subject: Re:
Date: 2001-02-20 15:36:26
Message-ID: 12560.982683386@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

pgsql-bugs(at)postgresql(dot)org writes:
> create table test (id int);
> insert into test values (1);
> insert into test values (2);
> insert into test values (3);
> select count(id) from test;

> You'll get

> ERROR: ExecEvalAggref: no aggregates in this expression context

?? I don't:

regression=# create table test (id int);
CREATE
regression=# insert into test values (1);
INSERT 145145 1
regression=# insert into test values (2);
INSERT 145146 1
regression=# insert into test values (3);
INSERT 145147 1
regression=# select count(id) from test;
count
-------
3
(1 row)

regression=#

What platform are you on? How did you build Postgres? Do the
regression tests pass for you?

regards, tom lane

In response to

  • at 2001-02-20 14:56:36 from pgsql-bugs

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2001-02-20 16:00:09 Re: Turkish locale bug
Previous Message pgsql-bugs 2001-02-20 14:56:36