We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d49361 commit 4d89e9bCopy full SHA for 4d89e9b
README.md
@@ -17,7 +17,7 @@ Postgres has CSV support on the [COPY](https://www.postgresql.org/docs/current/s
17
18
## Installation
19
20
-Clone this repo and run:
+PostgreSQL >= 12 is supported. Clone this repo and run:
21
22
```bash
23
make && make install
@@ -96,7 +96,7 @@ select csv_agg(x, csv_options(delimiter := E'\t')) from projects x;
96
97
You can include a byte-order mark (BOM) to make the CSV compatible with Excel.
98
99
-```sql
+```
100
select csv_agg(x, csv_options(bom := true)) from projects x;
101
102
csv_agg
0 commit comments