1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-31 17:02:12 +03:00

Fix some SGML-compiler warnings on -wxml mode.

This commit is contained in:
Alvaro Herrera
2009-02-04 21:30:41 +00:00
parent d8a30eca2e
commit d1cf27a8ee
5 changed files with 83 additions and 83 deletions

View File

@@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/advanced.sgml,v 1.56 2008/12/31 00:08:32 tgl Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/advanced.sgml,v 1.57 2009/02/04 21:30:41 alvherre Exp $ -->
<chapter id="tutorial-advanced">
<title>Advanced Features</title>
@@ -529,7 +529,7 @@ FROM
rank() OVER (PARTITION BY depname ORDER BY salary DESC, empno) AS pos
FROM empsalary
) AS ss
WHERE pos < 3;
WHERE pos &lt; 3;
</programlisting>
The above query only shows the rows from the inner query having