Re: Performance improvement proposal. Removal of toLowerCase calls.

From: Dave Cramer <pg(at)fastcrypt(dot)com>
To: Thomas Kellerer <spam_eater(at)gmx(dot)net>
Cc: List <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Performance improvement proposal. Removal of toLowerCase calls.
Date: 2014-01-16 19:51:42
Message-ID: CADK3HH+nXuw-fk+6jAqebFdY=tW0ZjN_crAdYnXN=66tHSBNww@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Thu, Jan 16, 2014 at 2:47 PM, Thomas Kellerer <spam_eater(at)gmx(dot)net> wrote:

> Are you sure ? This is in the resultset, so any column names should have
>> come back from the db.
>> Which means that they should come back in lower case anyway.
>>
>
> create table foo
> (
> "ID" integer,
> "Bar" varchar
> );
>
> select *
> from foo;
>
> Should return ID and Bar as the column names.
>
>
Exactly! While I haven't actually tested the code. The lines that Jeremy is
referring to would seem to suggest that the return columns would be id and
bar.

Does anyone have time to test this ?

Dave Cramer

dave.cramer(at)credativ(dot)ca
http://www.credativ.ca

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Thomas Kellerer 2014-01-16 20:21:30 Re: Performance improvement proposal. Removal of toLowerCase calls.
Previous Message Thomas Kellerer 2014-01-16 19:47:28 Re: Performance improvement proposal. Removal of toLowerCase calls.