Re: "_" in a serach pattern

From: Peter Koczan <pjkoczan(at)gmail(dot)com>
To: Ben Kim <bkim(at)tamu(dot)edu>
Cc: Jessica Richard <rjessil(at)yahoo(dot)com>, pgsql-admin(at)postgresql(dot)org
Subject: Re: "_" in a serach pattern
Date: 2007-07-25 02:29:02
Message-ID: 46A6B56E.3040405@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Most database systems can figure out the size (in bytes) of a column
rather quickly from offsets within a record. I doubt that postgres is
any different. The only difference I can think of is that it might be
slower to filter out trailing spaces of a char column before comparing,
though the actual string length may be cached somewhere. Semantically,
it should be no different. I haven't perused the source code enough to
know for sure.

Any of the developers that patrol this list can probably answer your
questions better, especially the question of matching or not matching
strings of different length.

Peter

Ben Kim wrote:
>> The only difference is that varchar can have a length limit, text is
>> always unlimited length. There's no significant performance
>> difference between either. For most intents and purposes, they're equal.
>
> Forgive me for diversion, but out of curiosity, would it make some
> difference whether strings of known length are compared or strings of
> unknown length are compared, like in join condition "using(address)"?
>
> Or, is the actual length stored in a separate field and read first so
> strings of different lengths wouldn't even need to be matched?
>
> Is there some reference on this subject other than the source code?
>
>
> Thanks.
>
> Ben K.
> Developer
> http://benix.tamu.edu
>

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2007-07-25 02:39:28 Re: Data directory was initialized by PostgreSQL version 8.3
Previous Message Phillip Smith 2007-07-25 02:15:21 Re: Data directory was initialized by PostgreSQL version 8.3