2
0

Finish importing pgio as internal package

This commit is contained in:
Jack Christensen
2022-02-21 14:35:20 -06:00
parent 1be4c10ce4
commit d13f651810
68 changed files with 63 additions and 65 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"strings"
"unicode"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
// Information on the internals of PostgreSQL arrays can be found in
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"fmt"
"reflect"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
// ArrayGetter is a type that can be converted into a PostgreSQL array.
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"encoding/binary"
"fmt"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type BitsScanner interface {
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type BoxScanner interface {
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type CircleScanner interface {
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"fmt"
"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.
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"fmt"
"time"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type DateScanner interface {
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"math"
"strconv"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type Float4 struct {
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"math"
"strconv"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type Float64Scanner interface {
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"unicode"
"unicode/utf8"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type HstoreScanner interface {
+1 -1
View File
@@ -9,7 +9,7 @@ import (
"math"
"strconv"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type Int64Scanner interface {
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"math"
"strconv"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type Int64Scanner interface {
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
const (
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type LineScanner interface {
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type LsegScanner interface {
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"strconv"
"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
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type PathScanner interface {
+1 -1
View File
@@ -9,7 +9,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type Vec2 struct {
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type PolygonScanner interface {
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"database/sql/driver"
"fmt"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
// RangeValuer is a type that can be converted into a PostgreSQL range.
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"strconv"
"strings"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type TIDScanner interface {
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"fmt"
"strconv"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type TimeScanner interface {
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"fmt"
"time"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
const pgTimestampFormat = "2006-01-02 15:04:05.999999999"
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"fmt"
"time"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
const pgTimestamptzHourFormat = "2006-01-02 15:04:05.999999999Z07"
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"math"
"strconv"
"github.com/jackc/pgio"
"github.com/jackc/pgx/v5/internal/pgio"
)
type Uint32Scanner interface {