String comparison and the SQL standard

From: Albe Laurenz <laurenz(dot)albe(at)wien(dot)gv(dot)at>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: String comparison and the SQL standard
Date: 2013-01-17 09:25:57
Message-ID: A737B7A37273E048B164557ADEF4A58B0579A7AB@ntex2010a.host.magwien.gv.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

While researching a problem with a different database system,
I came across the following in the SQL standard ISO/IEC 9075-2:2003,
Section 8.2 (<comparison predicate>), General Rules:

3) The comparison of two character strings is determined as follows:
a) Let CS be the collation as determined by Subclause 9.13,
"Collation determination", for the declared types of the
two character strings.
b) If the length in characters of X is not equal to the length
in characters of Y, then the shorter string is effectively
replaced, for the purposes of comparison, with a copy of itself
that has been extended to the length of the longer string by
concatenation on the right of one or more pad characters,
where the pad character is chosen based on CS.
If CS has the NO PAD characteristic, then the pad character is
an implementation-dependent character different from
any character in the character set of X and Y that collates
less than any string under CS.
Otherwise, the pad character is a <space>.

That would effectively mean that 'a'='a ' is TRUE for
all character string types.

Of the DBMS I tested, Microsoft SQL Server and MySQL gave me
that very result, while PostgreSQL and Oracle gave me FALSE.

Does anybody know if we deviate from the standard on purpose
in this case? I searched the archives, but all I could find was
http://www.postgresql.org/message-id/20051019154026.X995@ganymede.hub.org

Yours,
Laurenz Albe

Responses

Browse pgsql-general by date

  From Date Subject
Next Message aasat 2013-01-17 09:36:09 Re: How to store clickmap points?
Previous Message John R Pierce 2013-01-17 09:22:19 Re: Best method to compare subdomains