Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.80) (envelope-from ) id 1YxKwr-0006FU-7v for pgsql-docs@arkaria.postgresql.org; Tue, 26 May 2015 19:55:37 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.80) (envelope-from ) id 1YxKwq-0000MB-DY for pgsql-docs@arkaria.postgresql.org; Tue, 26 May 2015 19:55:36 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.2:RSA_AES_256_CBC_SHA256:256) (Exim 4.80) (envelope-from ) id 1Yx4tw-0004kY-4k for pgsql-docs@postgresql.org; Tue, 26 May 2015 02:47:32 +0000 Received: from mail-ig0-x234.google.com ([2607:f8b0:4001:c05::234]) by magus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.84) (envelope-from ) id 1Yx4ts-0002Y1-TR for pgsql-docs@postgresql.org; Tue, 26 May 2015 02:47:31 +0000 Received: by igbsb11 with SMTP id sb11so43636257igb.0 for ; Mon, 25 May 2015 19:47:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=BWLuUQv7nGqNg62mltEH/gcFoVyeZr7mQhV/E8HmrQQ=; b=pEV2dr1Z89IvkLSfQ0l2EcvOHVPzmx5kIBnzZnWa9KNXFvjRO5rPu5IbYLIP1QIBBa P6/gWN7sEiD6HpNRkFHO+Mib90W3+TYuDbFqEE/XvrPlxk1NMQHD794UOonrGNdhjJs6 JlWYeqAUYKiDEeSF8l3yaOSCW9VEyJhZ9doHOBnvOZhdDA/jaH3h/+GOTOLKl8yHPRZp P/x2qwxsffNb0P6xpzej1OheDUxeq2O6dU2Mtb9C3lRpmwjISbCxUlLR7U0b9YpzB3hM ZGD/YaZuN4JO/em94MRsUqahteuP07yFNwa52TNz4fAHgGtcECK6DMdmlJkB9kEd1IyX c1wQ== MIME-Version: 1.0 X-Received: by 10.43.133.137 with SMTP id hy9mr26665063icc.74.1432608446131; Mon, 25 May 2015 19:47:26 -0700 (PDT) Received: by 10.36.3.131 with HTTP; Mon, 25 May 2015 19:47:26 -0700 (PDT) Date: Tue, 26 May 2015 10:47:26 +0800 Message-ID: Subject: fix doc/src/sgml/queries.sgml From: digoal zhou To: pgsql-docs@postgresql.org Content-Type: multipart/alternative; boundary=20cf307f331688e56f0516f3251b X-Pg-Spam-Score: -2.7 (--) 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 --20cf307f331688e56f0516f3251b Content-Type: text/plain; charset=UTF-8 doc/src/sgml/queries.sgml 1272 1273 CUBE ( a, b, c ) 1274 1275 is equivalent to 1276 1277 GROUPING SETS ( 1278 ( a, b, c ), 1279 ( a, b ), 1280 ( a, c ), 1281 ( a ), 1282 ( b, c ), 1283 ( b ), 1284 ( c ), 1285 ( ), 1286 ) line 1285 fix to 1285 ( ) --20cf307f331688e56f0516f3251b Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
= doc/src/sgml/queries.sgml

1272 <programlistin= g>
1273 CUBE ( a, b, c )<= /div>
1274 </programlisting>
1275 =C2=A0 =C2=A0 is equivalent to
1276 <programlisting>
1277 GROUPING= SETS (
1278 =C2=A0 =C2=A0 ( a, b, c ),
= 1279 =C2=A0 =C2=A0 ( a, b =C2=A0 =C2=A0),
= 1280 =C2=A0 =C2=A0 ( a, =C2=A0 =C2=A0c ),
= 1281 =C2=A0 =C2=A0 ( a =C2=A0 =C2=A0 =C2=A0 = ),
1282 =C2=A0 =C2=A0 ( =C2=A0 =C2=A0b, c = ),
1283 =C2=A0 =C2=A0 ( =C2=A0 =C2=A0b =C2= =A0 =C2=A0),
1284 =C2=A0 =C2=A0 ( =C2=A0 = =C2=A0 =C2=A0 c ),
1285 =C2=A0 =C2=A0 ( = =C2=A0 =C2=A0 =C2=A0 =C2=A0 ),
1286 )

line 1285=C2= =A0fix to
1285 =C2=A0 =C2=A0 (= =C2=A0 =C2=A0 =C2=A0 =C2=A0 )
=
--20cf307f331688e56f0516f3251b--