File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -433,7 +433,7 @@ Postgres.js supports [`COPY ...`](https://www.postgresql.org/docs/14/sql-copy.ht
433
433
#### ``` await sql`copy ... from stdin`.writable() -> Writable ```
434
434
435
435
``` js
436
- const { pipeline } = require ( ' stream/promises' )
436
+ import { pipeline } from ' node: stream/promises'
437
437
438
438
// Stream of users with the default tab delimitated cells and new-line delimitated rows
439
439
const userStream = Readable .from ([
@@ -449,8 +449,8 @@ await pipeline(userStream, query);
449
449
450
450
##### Using Stream Pipeline
451
451
``` js
452
- const { pipeline } = require ( ' stream/promises' )
453
- const { createWriteStream } = require ( ' fs' )
452
+ import { pipeline } from ' node: stream/promises'
453
+ import { createWriteStream } from ' node: fs'
454
454
455
455
const readableStream = await sql ` copy users (name, age) to stdout` .readable ()
456
456
await pipeline (readableStream, createWriteStream (' output.tsv' ))
You can’t perform that action at this time.
0 commit comments