2
0

Renamed pgtype.ConnInfo to pgtype.Map

This commit is contained in:
Jack Christensen
2022-02-21 09:13:09 -06:00
parent bda10b2ec9
commit 1f2f239d09
53 changed files with 565 additions and 563 deletions
+4 -4
View File
@@ -26,7 +26,7 @@ create type ct_test as (
dt, err := conn.LoadType(context.Background(), "ct_test")
require.NoError(t, err)
conn.ConnInfo().RegisterType(dt)
conn.TypeMap().RegisterType(dt)
formats := []struct {
name string
@@ -105,7 +105,7 @@ create type point3d as (
dt, err := conn.LoadType(context.Background(), "point3d")
require.NoError(t, err)
conn.ConnInfo().RegisterType(dt)
conn.TypeMap().RegisterType(dt)
formats := []struct {
name string
@@ -140,7 +140,7 @@ create type point3d as (
dt, err := conn.LoadType(context.Background(), "point3d")
require.NoError(t, err)
conn.ConnInfo().RegisterType(dt)
conn.TypeMap().RegisterType(dt)
formats := []struct {
name string
@@ -179,7 +179,7 @@ create type point3d as (
dt, err := conn.LoadType(context.Background(), "point3d")
require.NoError(t, err)
conn.ConnInfo().RegisterType(dt)
conn.TypeMap().RegisterType(dt)
formats := []struct {
name string