Fix scanning null did not overwrite slice

non-blocking
Jack Christensen 2022-04-26 14:52:01 -05:00
parent 7427820aba
commit 0c6266ef30
2 changed files with 16 additions and 1 deletions

View File

@ -463,7 +463,7 @@ func (a FlatArray[T]) IndexType() any {
func (a *FlatArray[T]) SetDimensions(dimensions []ArrayDimension) error {
if dimensions == nil {
a = nil
*a = nil
return nil
}

View File

@ -1094,6 +1094,21 @@ func TestReadingNullByteArrays(t *testing.T) {
}
}
func TestQueryNullSliceIsSet(t *testing.T) {
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
defer closeConn(t, conn)
a := []int32{1, 2, 3}
err := conn.QueryRow(context.Background(), "select null::int[]").Scan(&a)
if err != nil {
t.Fatalf("conn.QueryRow failed: %v", err)
}
if a != nil {
t.Errorf("Expected 'a' to be nil, but it was: %v", a)
}
}
func TestConnQueryDatabaseSQLScanner(t *testing.T) {
t.Parallel()