2
0

Add float4, float8 and arrays

This commit is contained in:
Jack Christensen
2017-03-04 13:29:04 -06:00
parent 3179e2debc
commit 2010bea555
17 changed files with 1563 additions and 27 deletions
-6
View File
@@ -1151,9 +1151,6 @@ func TestQueryRowCoreFloat32Slice(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)
}
@@ -1198,9 +1195,6 @@ func TestQueryRowCoreFloat64Slice(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)
}