Re: [HACKERS] I thought this was picked up ages ago?

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: Peter T Mount <peter(at)retep(dot)org(dot)uk>
Cc: PostgreSQL Hackers List <hackers(at)postgreSQL(dot)org>
Subject: Re: [HACKERS] I thought this was picked up ages ago?
Date: 1999-05-18 21:34:01
Message-ID: 199905182134.RAA06977@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

>
> While playing with ODBC and MapInfo 5.01, I came across this one:
>
> drop table "MAPINFO_MAPCATALOG";
>
> This doesn't work as it seems to ignore the quotes, and convert into lower
> case.

Works in psql, which I think means libpq is OK:

test=> create table "TT" (x int);
CREATE
test=> drop table tt;
ERROR: Relation 'tt' does not exist
test=> drop table "TT";
DROP

--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Hannu Krosing 1999-05-18 21:36:08 Q: Features of 6.5
Previous Message Peter T Mount 1999-05-18 20:22:59 I thought this was picked up ages ago?