|
1 |
| -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/rules.sgml,v 1.15 2001/09/10 21:58:47 petere Exp $ --> |
| 1 | +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/rules.sgml,v 1.16 2001/09/12 01:22:25 ishii Exp $ --> |
2 | 2 |
|
3 | 3 | <Chapter Id="rules">
|
4 | 4 | <Title>The <ProductName>Postgres</ProductName> Rule System</Title>
|
|
1395 | 1395 | at the current data,
|
1396 | 1396 |
|
1397 | 1397 | <ProgramListing>
|
1398 |
| - al_bundy=> SELECT * FROM shoelace ORDER BY sl_name; |
| 1398 | + al_bundy=> SELECT * FROM shoelace; |
1399 | 1399 | sl_name |sl_avail|sl_color |sl_len|sl_unit |sl_len_cm
|
1400 | 1400 | ----------+--------+----------+------+--------+---------
|
1401 | 1401 | sl1 | 5|black | 80|cm | 80
|
@@ -1832,7 +1832,7 @@ Merge Join
|
1832 | 1832 |
|
1833 | 1833 | <ProgramListing>
|
1834 | 1834 | CREATE TABLE computer (
|
1835 |
| - hostname text -- indexed |
| 1835 | + hostname text, -- indexed |
1836 | 1836 | manufacturer text -- indexed
|
1837 | 1837 | );
|
1838 | 1838 |
|
|