|
14 | 14 |
|
15 | 15 | package com.github.pgasync.impl;
|
16 | 16 |
|
17 |
| -import static com.github.pgasync.impl.message.b.RowDescription.ColumnDescription; |
| 17 | +import static com.github.pgasync.impl.message.backend.RowDescription.ColumnDescription; |
18 | 18 |
|
19 | 19 | import java.util.ArrayList;
|
20 | 20 | import java.util.LinkedHashMap;
|
|
34 | 34 | import com.github.pgasync.Row;
|
35 | 35 | import com.github.pgasync.Transaction;
|
36 | 36 | import com.github.pgasync.impl.conversion.DataConverter;
|
37 |
| -import com.github.pgasync.impl.message.b.Authentication; |
38 |
| -import com.github.pgasync.impl.message.b.RowDescription; |
39 |
| -import com.github.pgasync.impl.message.f.Bind; |
40 |
| -import com.github.pgasync.impl.message.f.Close; |
41 |
| -import com.github.pgasync.impl.message.f.Describe; |
42 |
| -import com.github.pgasync.impl.message.f.Execute; |
| 37 | +import com.github.pgasync.impl.message.backend.Authentication; |
| 38 | +import com.github.pgasync.impl.message.backend.RowDescription; |
| 39 | +import com.github.pgasync.impl.message.frontend.Bind; |
| 40 | +import com.github.pgasync.impl.message.frontend.Close; |
| 41 | +import com.github.pgasync.impl.message.frontend.Describe; |
| 42 | +import com.github.pgasync.impl.message.frontend.Execute; |
43 | 43 | import com.github.pgasync.impl.message.Message;
|
44 |
| -import com.github.pgasync.impl.message.f.Parse; |
45 |
| -import com.github.pgasync.impl.message.f.PasswordMessage; |
46 |
| -import com.github.pgasync.impl.message.f.Query; |
47 |
| -import com.github.pgasync.impl.message.f.StartupMessage; |
| 44 | +import com.github.pgasync.impl.message.frontend.Parse; |
| 45 | +import com.github.pgasync.impl.message.frontend.PasswordMessage; |
| 46 | +import com.github.pgasync.impl.message.frontend.Query; |
| 47 | +import com.github.pgasync.impl.message.frontend.StartupMessage; |
48 | 48 |
|
49 | 49 | /**
|
50 | 50 | * A connection to Postgres backend. The postmaster forks a backend process for
|
@@ -290,7 +290,7 @@ public CompletableFuture<Integer> query(Consumer<Map<String, PgColumn>> onColumn
|
290 | 290 | }
|
291 | 291 |
|
292 | 292 | /**
|
293 |
| - * Nested Transaction using savepoints. |
| 293 | + * Nested transaction using savepoints. |
294 | 294 | */
|
295 | 295 | class PgConnectionNestedTransaction extends PgConnectionTransaction {
|
296 | 296 |
|
|
0 commit comments