weird problem with PG 8.1 - Mailing list pgsql-general

From Marcin Krol
Subject weird problem with PG 8.1
Date
Msg-id 49D2385E.50802@gmail.com
Whole thread Raw
Responses Re: weird problem with PG 8.1  (Scott Marlowe <scott.marlowe@gmail.com>)
Re: weird problem with PG 8.1  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: weird problem with PG 8.1  (Guillaume Lelarge <guillaume@lelarge.info>)
Re: weird problem with PG 8.1  (Osvaldo Kussama <osvaldo.kussama@gmail.com>)
List pgsql-general
Hello everyone,

I'm having this completely weird problem that ORDER BY doesn't seem to
work correctly in PG 8.1 as bundled in RedHat 5.

When I issue:

SELECT * FROM virtualization;

I get all the fields:

reservations=# SELECT * FROM virtualization;
  id | Virtualization  |  color
----+-----------------+---------
   1 | BOX             | #FAFAFA
   2 | LPAR            | #999999
   3 | BOX ZONE HOST   | #FAFAFA
   4 | NPAR            | #9966CC
   5 | VPAR            | #9966CC

But when I try to order by column Virtualization:

reservations=# SELECT * FROM virtualization ORDER BY Virtualization;

ERROR:  could not identify an ordering operator for type virtualization
HINT:  Use an explicit ordering operator or modify the query.


The 'virtualization' table is just a normal table with VARCHAR column of
Virtualization:

reservations=# \d virtualization
                                   Table "public.virtualization"
      Column     |       Type        |                          Modifiers
----------------+-------------------+-------------------------------------------------------------
  id             | integer           | not null default
nextval('virtualization_id_seq'::regclass)
  Virtualization | character varying |
  color          | character varying |
Indexes:
     "virtualization_pkey" PRIMARY KEY, btree (id)


When I try to specify table.column I get this:

reservations=# SELECT * FROM virtualization ORDER BY
virtualization.Virtualization;
ERROR:  column virtualization.virtualization does not exist



What's going on?

Regards,
mk

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: [HACKERS] string_to_array with empty input
Next
From: Scott Marlowe
Date:
Subject: Re: Server Performance