RE: Appendix A. PostgreSQL Error Codes

From: "Andy Dossett" <dossett(at)btinternet(dot)com>
To: "'Tom Lane'" <tgl(at)sss(dot)pgh(dot)pa(dot)us>, "'Bruce Momjian'" <bruce(at)momjian(dot)us>
Cc: <pgsql-docs(at)lists(dot)postgresql(dot)org>
Subject: RE: Appendix A. PostgreSQL Error Codes
Date: 2018-04-28 08:08:26
Message-ID: 000001d3dec8$16875630$43960290$@btinternet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

Hi

The use case is pretty simple; my system has thrown an SQL error code, I
want to know what it means.

Having the list in 'order by sqlstate' sequence would save me from having to
hunt up and down the list. And I can easily determine if the error code is
missing; I can then raise another bug report.

Regards

Andy Dossett

-----Original Message-----
From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Sent: 27 April 2018 16:16
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: dossett(at)btinternet(dot)com; pgsql-docs(at)lists(dot)postgresql(dot)org
Subject: Re: Appendix A. PostgreSQL Error Codes

Bruce Momjian <bruce(at)momjian(dot)us> writes:
> On Fri, Apr 27, 2018 at 10:08:12AM +0000, PG Doc comments form wrote:
>> Would it be possible to present the codes in ascending sequence?

> Uh, I am guessing this is the order listed in the SQL standard. How
> would you order them differently? Have the letters only at the end?

There was some discussion of this a couple months ago, which I'm too lazy to
search the archives for right now, but it trailed off without any agreement
on what to do.

There are at least three different ordering principles that might be applied
here: numeric by code (well, perhaps more like "ASCII sort order");
alphabetical by exception name (but probably still keeping the
000 category codes at the top); or semantic grouping (ie try to keep related
errors together). It looks to me like all three of these have been applied
in different places ;-).

One idea that might help is to present two tables with different sort
orders, say strict numeric and strict alphabetical. (If we did that, I'd be
inclined to leave errcodes.txt alone and put the sorting responsibility on
the script that converts it to SGML.)

One question that has to be asked is what we think the use-case for this
table is at all. Different use-cases result in different ideas about the
best ordering.

regards, tom lane

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Jürgen Purtz 2018-04-28 09:42:18 Re: Appendix A. PostgreSQL Error Codes
Previous Message PG Doc comments form 2018-04-27 18:48:53 Isn't "publication" wrongly defined here?