Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bGH0P-0001zI-C3 for pgsql-docs@arkaria.postgresql.org; Fri, 24 Jun 2016 02:38:05 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.84_2) (envelope-from ) id 1bGH0O-0001cl-Uu for pgsql-docs@arkaria.postgresql.org; Fri, 24 Jun 2016 02:38:04 +0000 Received: from makus.postgresql.org ([2001:4800:1501:1::229]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1bGH02-0000os-4g for pgsql-docs@postgresql.org; Fri, 24 Jun 2016 02:37:42 +0000 Received: from mail-vk0-x22d.google.com ([2607:f8b0:400c:c05::22d]) by makus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.84_2) (envelope-from ) id 1bGGzz-000553-Hy for pgsql-docs@postgresql.org; Fri, 24 Jun 2016 02:37:41 +0000 Received: by mail-vk0-x22d.google.com with SMTP id c2so102650119vkg.1 for ; Thu, 23 Jun 2016 19:37:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=4oqyQr/kKv6d9l+TDcfKZe1ijFX0qzVkecSKT9l3R7Q=; b=La/qfkFSo3RHORhiOR1//Us+sa8lRw/feCnYwl3HgyeuBGcCgB1LB4X/PmLL0XQNAA Vkg6CwyQOf+FDxTa1lz3aI13zvr+5KBDvXKvboY8PEtsW8DiP5UlFRQd7NA49v/jxsnG 2YcespeIR3eMcoz2kO+zLixUs3XzqdPu27MhDgMLDxhD/sVYsqzqtZ8Yg+xwyq/r7uG/ J3iin1Gg2YyqvQEksz6nNv4wTHRgit09avybpzIRHicu/aN5e50JugqFyixj+6+oWZKx llznA0zyOgz5Ca/L6QqVXv6T0MzBoeQ+pnnOmp259JdXn1XRJBfBDrGT8xR/B/cKg/yX MVLQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=4oqyQr/kKv6d9l+TDcfKZe1ijFX0qzVkecSKT9l3R7Q=; b=fCMoGJAB8usI1I/ZEQNoJGFZ1ulg6Tlv7BBIzQaWC0S4FELu6P46zkT1xy8lFDEkhB LthVbDytDokvGSgk3IpINsVMjodiW96Cqed2ZFt8Do+nuZEksbxMp7FM9veVUDqlmn22 EtswYSUwhTr8xGsp5gqIz1gCsNybGtIl5LNGcH7TvjYTyWlQjgmoJqE6hBqSk1b6aAyy +9Kzqia5LXfKBfwgN9qBGDro9YSEI68AdlgYK7zoBSDWWWvmuhkFGgBuwj3VUxgsznvM f4Ery8FneUixxUgLVF3ACniMGN6B27Hgo6vgirrMBQhjxRyDurYc+JwPbUU4B4rrGokx L0cg== X-Gm-Message-State: ALyK8tLUgaXPxJ2Jshui+odcrP8XYNpsxHES+oSc4WiGukRrSJvetMdgZj0KWQ4f7XuY0ca7roMhk2LxabdW1A== X-Received: by 10.31.82.67 with SMTP id g64mr1288802vkb.77.1466735858611; Thu, 23 Jun 2016 19:37:38 -0700 (PDT) MIME-Version: 1.0 From: Justin Dearing Date: Fri, 24 Jun 2016 02:37:29 +0000 Message-ID: Subject: Some doc suggestions To: pgsql-docs@postgresql.org Content-Type: multipart/alternative; boundary=001a114e572ad4fbe30535fd0d87 X-Pg-Spam-Score: -2.4 (--) List-Archive: List-Help: List-ID: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: X-Mailing-List: pgsql-docs Precedence: bulk Sender: pgsql-docs-owner@postgresql.org --001a114e572ad4fbe30535fd0d87 Content-Type: text/plain; charset=UTF-8 Switched jobs recently and returning to postgres after a long hiatus. The docs are great, but I noticed a few things that could be improved in the area of catalot documentations. 1. The CREATE/ALTER/DROP doc pages should have a link to the corresponding pg_catalog and INFORMATION_schema tables and views for that object type. The 2. pg_catalog docs should have a link to their corresponding information_schema table or view and visa versa. 3. Perhaps this page (and its analogs) https://www.postgresql.org/docs/9.1/static/catalogs.html should have a 1-3 word description of each catalog. Some are unintuitive. For example it took awhile to figure out pg_attribute was the list of columns. 4. OID columns should have a note saying something to the effect of "to get the text name of this simply use atttypid::REGTYPE" 5. I discovered that pg_catalog.name is a built in type today, but its not listed as a built in type. I've yet to find it in the docs. It should either be listed in the built in types, or the list of built in types should link to the list of "other built in types" whereever they are. If any of those suggestions are ameanable where are the docs for contributing to the docs? Regards, Justin Dearing --001a114e572ad4fbe30535fd0d87 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Switched jobs recently and returning to postgres after a l= ong hiatus. The docs are great, but I noticed a few things =C2=A0that could= be improved in the area of catalot documentations.

    =
  1. The CREATE/ALTER/DROP doc pages should = have a link to the corresponding pg_catalog and INFORMATION_schema tables a= nd views for that object type. The=C2=A0
  2. pg_catalog docs= should have a link to their corresponding information_schema table or view= and visa versa.
  3. Perhaps this page (and its analogs)=C2=A0https://www.p= ostgresql.org/docs/9.1/static/catalogs.html=C2=A0should have a 1-3 word= description of each catalog. Some are unintuitive. For example it took awh= ile to figure out pg_attribute was the list of columns.
  4. OID columns= should have a note saying something to the effect of "to get the text= name of this simply use=C2=A0atttypid::REGTYPE"
  5. I discovered = that pg_catalog.name is a built in t= ype today, but its not listed as a built in type. I've yet to find it i= n the docs. It should either be listed in the built in types, or the list o= f built in types should link to the list of "other built in types"= ; whereever they are.
If any of those suggestions are ameanab= le where are the docs for contributing to the docs?

Regards,

Justin Dearing
--001a114e572ad4fbe30535fd0d87--