|
14 | 14 | * under the License. |
15 | 15 | */ |
16 | 16 |
|
17 | | -package com.github.mauricio.postgresql |
| 17 | +package com.github.mauricio.async.db.postgresql |
18 | 18 |
|
19 | 19 | import java.nio.ByteBuffer |
20 | 20 |
|
21 | | -import com.github.mauricio.async.db.column.{TimestampEncoderDecoder, TimeEncoderDecoder, DateEncoderDecoder} |
| 21 | +import com.github.mauricio.async.db.column.{DateEncoderDecoder, TimeEncoderDecoder, TimestampEncoderDecoder} |
22 | 22 | import com.github.mauricio.async.db.exceptions.UnsupportedAuthenticationMethodException |
23 | | -import com.github.mauricio.async.db.postgresql.exceptions.{QueryMustNotBeNullOrEmptyException, GenericDatabaseException} |
| 23 | +import com.github.mauricio.async.db.postgresql.exceptions.{GenericDatabaseException, QueryMustNotBeNullOrEmptyException} |
24 | 24 | import com.github.mauricio.async.db.postgresql.messages.backend.InformationMessage |
25 | | -import com.github.mauricio.async.db.postgresql.{PostgreSQLConnection, DatabaseTestHelper} |
26 | 25 | import com.github.mauricio.async.db.util.Log |
27 | | -import com.github.mauricio.async.db.{Configuration, QueryResult, Connection} |
| 26 | +import com.github.mauricio.async.db.{Configuration, Connection, QueryResult} |
28 | 27 | import io.netty.buffer.Unpooled |
29 | | -import concurrent.{Future, Await} |
| 28 | +import org.joda.time.LocalDateTime |
30 | 29 | import org.specs2.mutable.Specification |
31 | | -import scala.concurrent.ExecutionContext.Implicits.global |
| 30 | + |
32 | 31 | import scala.concurrent.duration._ |
33 | | -import org.joda.time.LocalDateTime |
| 32 | +import scala.concurrent.{Await, Future} |
34 | 33 |
|
35 | 34 | object PostgreSQLConnectionSpec { |
36 | 35 | val log = Log.get[PostgreSQLConnectionSpec] |
|
0 commit comments