On Wed, 8 May 2002, Tom Lane wrote:
> "Tille, Andreas" <TilleA(at)rki(dot)de> writes:
> > test=> drop table test;
> > ERROR: you do not own table "test"
>
> > Did I miss something?
>
> No. What is not clear about that error message? Only the owner can
> drop a table. It's not considered a grantable right.
But it is something you can change. As the table owner or superuser,
Andreas, you can issue the following command:
alter table ttt owner to somebody;
There ya go.