The prompt is not displayed correctly in the example on psql page

From: PG Doc comments form <noreply(at)postgresql(dot)org>
To: pgsql-docs(at)lists(dot)postgresql(dot)org
Cc: y(dot)saburov(at)gmail(dot)com
Subject: The prompt is not displayed correctly in the example on psql page
Date: 2024-04-21 10:57:58
Message-ID: 171369707837.684.8207966689229976474@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/app-psql.html
Description:

On this page https://www.postgresql.org/docs/current/app-psql.html

where is? >> `( if there is an unmatched left parenthesis`

```sql
testdb=> SELECT t1.first as "A", t2.first+100 AS "B",
t1.first*(t2.first+100) as "AxB",
testdb(> row_number() over(order by t2.first) AS ord
testdb(> FROM my_table t1 CROSS JOIN my_table t2 ORDER BY 1 DESC
testdb(> \crosstabview "A" "B" "AxB" ord
```

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Daniel Gustafsson 2024-04-22 08:45:15 Re: The prompt is not displayed correctly in the example on psql page
Previous Message PG Doc comments form 2024-04-20 12:22:24 Documentation Chapter 16: 8.21