Skip to content

Commit 1930343

Browse files
committed
Change methods' signatures
1 parent d7a4b28 commit 1930343

File tree

4 files changed

+13
-18
lines changed

4 files changed

+13
-18
lines changed

vertx-pg-client/src/main/java/examples/PgClientExamples.java

+4-8
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
import io.vertx.core.Future;
2121
import io.vertx.core.Vertx;
22-
import io.vertx.core.buffer.Buffer;
23-
import io.vertx.core.buffer.impl.BufferImpl;
2422
import io.vertx.core.json.JsonObject;
2523
import io.vertx.core.net.PemTrustOptions;
2624
import io.vertx.docgen.Source;
@@ -738,7 +736,7 @@ public void batchReturning(SqlClient client) {
738736
public void importDataToDb(Vertx vertx, PgConnection client) {
739737
vertx.fileSystem().readFile("path/to/file")
740738
.flatMap(bufferAsyncResult -> {
741-
return client.copyFrom(
739+
return client.copyFromBytes(
742740
"COPY my_table FROM STDIN (FORMAT csv, HEADER)",
743741
bufferAsyncResult
744742
).execute();
@@ -749,12 +747,10 @@ public void importDataToDb(Vertx vertx, PgConnection client) {
749747
}
750748

751749
public void exportDataFromDb(Vertx vertx, PgConnection client) {
752-
Buffer buffer = new BufferImpl();
753750
String path = "path/to/file";
754-
client.copyTo("COPY my_table TO STDOUT (FORMAT csv, HEADER)", buffer)
755-
.andThen(res -> {
756-
vertx.fileSystem().writeFile("path/to/file.csv", buffer);
757-
}).onSuccess(res -> System.out.println("Data exported to " + path));
751+
client.copyToBytes("COPY my_table TO STDOUT (FORMAT csv, HEADER)").execute()
752+
.flatMap(buffer -> vertx.fileSystem().writeFile("path/to/file.csv", buffer))
753+
.onSuccess(res -> System.out.println("Data exported to " + path));
758754
}
759755

760756
public void pgBouncer(PgConnectOptions connectOptions) {

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ static Future<PgConnection> connect(Vertx vertx, String connectionUri) {
108108
* @param from byte stream data will be fetched from
109109
* @return result set with single field {@code rowsWritten}
110110
*/
111-
Query<RowSet<Row>> copyFrom(String sql, Buffer from);
111+
Query<RowSet<Row>> copyFromBytes(String sql, Buffer from);
112112

113113
/**
114114
* Exports data from a database with decoding.
@@ -118,18 +118,17 @@ static Future<PgConnection> connect(Vertx vertx, String connectionUri) {
118118
* @param sql COPY command (example {@code COPY my_table TO STDOUT (FORMAT binary)})
119119
* @return decoded records
120120
*/
121-
Query<RowSet<Row>> copyTo(String sql);
121+
Query<RowSet<Row>> copyToRows(String sql);
122122

123123
/**
124124
* Exports data from a database as-is, without decoding.
125125
*
126126
* <p>Use this method when exporting opaque bytes, e.g. to a CSV file.
127127
*
128128
* @param sql COPY command (example {@code COPY my_table TO STDOUT (FORMAT csv)})
129-
* @param to bytes container data will be written to
130-
* @return async result
129+
* @return async result of bytes container data will be written to
131130
*/
132-
Future<Void> copyTo(String sql, Buffer to);
131+
Query<Buffer> copyToBytes(String sql);
133132

134133
/**
135134
* Send a request cancellation message to tell the server to cancel processing request in this connection.

vertx-pg-client/src/main/java/io/vertx/pgclient/impl/PgConnectionImpl.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,18 +117,18 @@ public PgConnection noticeHandler(Handler<PgNotice> handler) {
117117
}
118118

119119
@Override
120-
public Query<RowSet<Row>> copyFrom(String sql, Buffer from) {
120+
public Query<RowSet<Row>> copyFromBytes(String sql, Buffer from) {
121121
return null;
122122
}
123123

124124
@Override
125-
public Query<RowSet<Row>> copyTo(String sql) {
125+
public Query<RowSet<Row>> copyToRows(String sql) {
126126
return null;
127127
}
128128

129129
@Override
130-
public Future<Void> copyTo(String sql, Buffer to) {
131-
return Future.succeededFuture();
130+
public Query<Buffer> copyToBytes(String sql) {
131+
return null;
132132
}
133133

134134
@Override

vertx-pg-client/src/test/java/io/vertx/pgclient/PgConnectionCopyTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public void testCopyToRows(TestContext ctx) {
1818
deleteFromTestTable(ctx, conn, () -> {
1919
insertIntoTestTable(ctx, conn, 10, () -> {
2020
PgConnection pgConn = (PgConnection) conn;
21-
pgConn.copyTo("COPY my_table TO STDOUT (FORMAT binary)")
21+
pgConn.copyToRows("COPY my_table TO STDOUT (FORMAT binary)")
2222
.execute()
2323
.onComplete(ctx.asyncAssertSuccess(result -> {
2424
for (int i = 0; i < 2; i++) {

0 commit comments

Comments
 (0)