2
0

Add arrays to all other pgtypes

This commit is contained in:
Jack Christensen
2017-03-04 11:48:53 -06:00
parent aabf43a725
commit ffb949054d
18 changed files with 2614 additions and 33 deletions
-6
View File
@@ -1063,9 +1063,6 @@ func TestQueryRowCoreInt32Slice(t *testing.T) {
if err == nil {
t.Error("Expected null to cause error when scanned into slice, but it didn't")
}
if err != nil && !strings.Contains(err.Error(), "Cannot decode null") {
t.Errorf(`Expected null to cause error "Cannot decode null..." but it was %v`, err)
}
ensureConnValid(t, conn)
}
@@ -1110,9 +1107,6 @@ func TestQueryRowCoreInt64Slice(t *testing.T) {
if err == nil {
t.Error("Expected null to cause error when scanned into slice, but it didn't")
}
if err != nil && !strings.Contains(err.Error(), "Cannot decode null") {
t.Errorf(`Expected null to cause error "Cannot decode null..." but it was %v`, err)
}
ensureConnValid(t, conn)
}