Possible Duplicate:
In psql, why do some commands have no effect?
I've just installed the Postgres server and I'm running into a problem using psql. Whenever I'm in the psql
shell none of the commands have any effect. For example:
postgres=# create database testing
postgres=# create user foo
It's my understanding that I should see something like this:
postgres=# create database testing
CREATE DATABASE
postgres=# create user foo
CREATE ROLE
The weird thing is I can use the shell commands to make the database and roles. I've installed postgres from ppa:pitti/postgresql
on a vanilla install of Ubuntu 10.04 (as per railscast #335).
I've spent a fair amount of time on google trying to figure out what's my problem is but I can't seem to get any answers.
Thanks.