Skip to content

Commit

Permalink
print debug
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Nov 14, 2023
1 parent 2153d5f commit 15aaf1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flow/e2e/snowflake/peer_flow_sf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1418,9 +1418,10 @@ func (s *PeerFlowE2ETestSuiteSF) Test_Column_Exclusion(t *testing.T) {
sfRows, err := s.sfHelper.ExecuteAndProcessQuery(query)
require.NoError(t, err)

fmt.Printf("%v\n", sfRows.Schema.Fields)
for _, field := range sfRows.Schema.Fields {
require.NotEqual(t, field.Name, "c2")
}
require.Equal(t, len(sfRows.Schema.Fields), 4)
require.Equal(t, 4, len(sfRows.Schema.Fields))
// TODO inspect content
}

0 comments on commit 15aaf1b

Please sign in to comment.