Re: - Mailing list pgsql-bugs

From Tom Lane
Subject Re:
Date
Msg-id 12560.982683386@sss.pgh.pa.us
Whole thread Raw
In response to  (pgsql-bugs@postgresql.org)
List pgsql-bugs
pgsql-bugs@postgresql.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

pgsql-bugs by date:

Previous
From: pgsql-bugs@postgresql.org
Date:
Subject:
Next
From: Tom Lane
Date:
Subject: Re: Turkish locale bug