Skip to content

Commit 66b398a

Browse files
committed
Add notes
1 parent bb79d40 commit 66b398a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

vertx-pg-client/src/main/java/io/vertx/pgclient/PgConnection.java

+9
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,15 @@ static Future<PgConnection> connect(Vertx vertx, String connectionUri) {
131131
*
132132
* @param sql COPY command (example {@code COPY my_table TO STDOUT (FORMAT csv)})
133133
* @return async result of bytes container data will be written to
134+
*
135+
* - vertx.core.stream - https://vertx.io/docs/apidocs/io/vertx/core/streams/ReadStream.html
136+
* - future of read stream.
137+
* - when we do query operation
138+
* - we should not use query result builder
139+
* - what about SELECT 1;SELECT 1 or COPY ....;COPY ... ?
140+
* - we need a new interface Future<ReadStream<Buffer>>
141+
* - https://vertx.io/docs/apidocs/io/vertx/core/streams/ReadStream.html
142+
* - PgSocketConnection - we will apply backpressure in SocketInternal
134143
*/
135144
Future<SqlResult<Buffer>> copyToBytes(String sql);
136145

0 commit comments

Comments
 (0)