Skip to content

Commit 1581088

Browse files
committed
add runnable \gdesc example to docs
1 parent 1840012 commit 1581088

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

packages/typegen/src/types.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,16 @@ export interface Options {
2626
*
2727
* You can test this by running `echo 'select 123' | ${your_psqlCommand} -f -`
2828
*
29-
* e.g. `echo 'select 1 as a, 2 as b' | docker-compose exec -T postgres psql "postgresql://postgres:postgres@localhost:5432/postgres" -f -`
29+
* e.g. `echo 'select 1 as a, 2 as b \gdesc' | docker-compose exec -T postgres psql "postgresql://postgres:postgres@localhost:5432/postgres" -f -`
3030
*
3131
* You should see something like this printed:
3232
*
3333
* ```
34-
* a | b
35-
* ---+---
36-
* 1 | 2
37-
* (1 row)
34+
* Column | Type
35+
* --------+-------
36+
* a | integer
37+
* b | integer
38+
* (2 rows)
3839
* ```
3940
*/
4041
psqlCommand: string

0 commit comments

Comments
 (0)