mirror of https://github.com/jackc/pgx.git
Finish importing pgio as internal package
parent
1be4c10ce4
commit
d13f651810
|
@ -7,7 +7,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
"github.com/jackc/pgx/v5/pgconn"
|
"github.com/jackc/pgx/v5/pgconn"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
1
go.mod
1
go.mod
|
@ -3,7 +3,6 @@ module github.com/jackc/pgx/v5
|
||||||
go 1.17
|
go 1.17
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/jackc/pgio v1.0.0
|
|
||||||
github.com/jackc/pgpassfile v1.0.0
|
github.com/jackc/pgpassfile v1.0.0
|
||||||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b
|
||||||
github.com/jackc/puddle v1.2.1
|
github.com/jackc/puddle v1.2.1
|
||||||
|
|
2
go.sum
2
go.sum
|
@ -1,8 +1,6 @@
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE=
|
|
||||||
github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8=
|
|
||||||
github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=
|
github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=
|
||||||
github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg=
|
github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg=
|
||||||
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg=
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg=
|
||||||
|
|
|
@ -16,7 +16,7 @@ import (
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
"github.com/jackc/pgx/v5/pgconn/internal/ctxwatch"
|
"github.com/jackc/pgx/v5/pgconn/internal/ctxwatch"
|
||||||
"github.com/jackc/pgx/v5/pgproto3"
|
"github.com/jackc/pgx/v5/pgproto3"
|
||||||
)
|
)
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AuthenticationCleartextPassword is a message sent from the backend indicating that a clear-text password is required.
|
// AuthenticationCleartextPassword is a message sent from the backend indicating that a clear-text password is required.
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AuthenticationMD5Password is a message sent from the backend indicating that an MD5 hashed password is required.
|
// AuthenticationMD5Password is a message sent from the backend indicating that an MD5 hashed password is required.
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AuthenticationOk is a message sent from the backend indicating that authentication was successful.
|
// AuthenticationOk is a message sent from the backend indicating that authentication was successful.
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AuthenticationSASL is a message sent from the backend indicating that SASL authentication is required.
|
// AuthenticationSASL is a message sent from the backend indicating that SASL authentication is required.
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AuthenticationSASLContinue is a message sent from the backend containing a SASL challenge.
|
// AuthenticationSASLContinue is a message sent from the backend containing a SASL challenge.
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// AuthenticationSASLFinal is a message sent from the backend indicating a SASL authentication has completed.
|
// AuthenticationSASLFinal is a message sent from the backend indicating a SASL authentication has completed.
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type BackendKeyData struct {
|
type BackendKeyData struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
"github.com/jackc/pgx/v5/pgproto3"
|
"github.com/jackc/pgx/v5/pgproto3"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Bind struct {
|
type Bind struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const cancelRequestCode = 80877102
|
const cancelRequestCode = 80877102
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Close struct {
|
type Close struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CommandComplete struct {
|
type CommandComplete struct {
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CopyBothResponse struct {
|
type CopyBothResponse struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CopyData struct {
|
type CopyData struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CopyFail struct {
|
type CopyFail struct {
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CopyInResponse struct {
|
type CopyInResponse struct {
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CopyOutResponse struct {
|
type CopyOutResponse struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type DataRow struct {
|
type DataRow struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Describe struct {
|
type Describe struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Execute struct {
|
type Execute struct {
|
||||||
|
|
|
@ -2,7 +2,8 @@ package pgproto3
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"github.com/jackc/pgio"
|
|
||||||
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type FunctionCall struct {
|
type FunctionCall struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type FunctionCallResponse struct {
|
type FunctionCallResponse struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const gssEncReqNumber = 80877104
|
const gssEncReqNumber = 80877104
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type NotificationResponse struct {
|
type NotificationResponse struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ParameterDescription struct {
|
type ParameterDescription struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ParameterStatus struct {
|
type ParameterStatus struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Parse struct {
|
type Parse struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PasswordMessage struct {
|
type PasswordMessage struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Query struct {
|
type Query struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SASLInitialResponse struct {
|
type SASLInitialResponse struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SASLResponse struct {
|
type SASLResponse struct {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const sslRequestNumber = 80877103
|
const sslRequestNumber = 80877103
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const ProtocolVersionNumber = 196608 // 3.0
|
const ProtocolVersionNumber = 196608 // 3.0
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"unicode"
|
"unicode"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Information on the internals of PostgreSQL arrays can be found in
|
// Information on the internals of PostgreSQL arrays can be found in
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ArrayGetter is a type that can be converted into a PostgreSQL array.
|
// ArrayGetter is a type that can be converted into a PostgreSQL array.
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type BitsScanner interface {
|
type BitsScanner interface {
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type BoxScanner interface {
|
type BoxScanner interface {
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CircleScanner interface {
|
type CircleScanner interface {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// CompositeIndexGetter is a type accessed by index that can be converted into a PostgreSQL composite.
|
// CompositeIndexGetter is a type accessed by index that can be converted into a PostgreSQL composite.
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type DateScanner interface {
|
type DateScanner interface {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"math"
|
"math"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Float4 struct {
|
type Float4 struct {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"math"
|
"math"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Float64Scanner interface {
|
type Float64Scanner interface {
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"unicode"
|
"unicode"
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type HstoreScanner interface {
|
type HstoreScanner interface {
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"math"
|
"math"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Int64Scanner interface {
|
type Int64Scanner interface {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"math"
|
"math"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Int64Scanner interface {
|
type Int64Scanner interface {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type LineScanner interface {
|
type LineScanner interface {
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type LsegScanner interface {
|
type LsegScanner interface {
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// PostgreSQL internal numeric storage uses 16-bit "digits" with base of 10,000
|
// PostgreSQL internal numeric storage uses 16-bit "digits" with base of 10,000
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PathScanner interface {
|
type PathScanner interface {
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Vec2 struct {
|
type Vec2 struct {
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type PolygonScanner interface {
|
type PolygonScanner interface {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"database/sql/driver"
|
"database/sql/driver"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
// RangeValuer is a type that can be converted into a PostgreSQL range.
|
// RangeValuer is a type that can be converted into a PostgreSQL range.
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TIDScanner interface {
|
type TIDScanner interface {
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TimeScanner interface {
|
type TimeScanner interface {
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const pgTimestampFormat = "2006-01-02 15:04:05.999999999"
|
const pgTimestampFormat = "2006-01-02 15:04:05.999999999"
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
const pgTimestamptzHourFormat = "2006-01-02 15:04:05.999999999Z07"
|
const pgTimestamptzHourFormat = "2006-01-02 15:04:05.999999999Z07"
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"math"
|
"math"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/jackc/pgio"
|
"github.com/jackc/pgx/v5/internal/pgio"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Uint32Scanner interface {
|
type Uint32Scanner interface {
|
||||||
|
|
Loading…
Reference in New Issue