We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1840012 commit 1581088Copy full SHA for 1581088
packages/typegen/src/types.ts
@@ -26,15 +26,16 @@ export interface Options {
26
*
27
* You can test this by running `echo 'select 123' | ${your_psqlCommand} -f -`
28
29
- * e.g. `echo 'select 1 as a, 2 as b' | docker-compose exec -T postgres psql "postgresql://postgres:postgres@localhost:5432/postgres" -f -`
+ * e.g. `echo 'select 1 as a, 2 as b \gdesc' | docker-compose exec -T postgres psql "postgresql://postgres:postgres@localhost:5432/postgres" -f -`
30
31
* You should see something like this printed:
32
33
* ```
34
- * a | b
35
- * ---+---
36
- * 1 | 2
37
- * (1 row)
+ * Column | Type
+ * --------+-------
+ * a | integer
+ * b | integer
38
+ * (2 rows)
39
40
*/
41
psqlCommand: string
0 commit comments