Skip to content

Commit 4e79b89

Browse files
committed
Add notes
1 parent ad8c006 commit 4e79b89

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

0 commit comments

Comments
 (0)