Skip to content

Commit

Permalink
Merge pull request #24 from aktsk/fix-how-to-initialize-rows
Browse files Browse the repository at this point in the history
Fix how to initialize rows variable
  • Loading branch information
mizzy authored Jul 6, 2020
2 parents 5907022 + 207c104 commit 4849a5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bq/bq.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func Query(project string, query config.Query) ([]string, [][]string, error) {
headers = append(headers, s.Name)
}

rows := [][]string{[]string{}}
var rows [][]string

for {
var bqValues []bigquery.Value
Expand Down

0 comments on commit 4849a5c

Please sign in to comment.