Skip to content

Commit

Permalink
Bump the number of schema introspection rows for the CSV datasource t…
Browse files Browse the repository at this point in the history
…o 100, to keep it consistent with the JSON datasource.
  • Loading branch information
cube2222 committed Jul 24, 2022
1 parent 58de73c commit 27921b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datasources/csv/impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func Creator(separator rune) func(name string, options map[string]string) (physi

fields := make([]octosql.Type, len(fieldNames))
filled := make([]bool, len(fieldNames))
for i := 0; i < 10; i++ {
for i := 0; i < 100; i++ {
row, err := decoder.Read()
if err == io.EOF {
break
Expand Down

0 comments on commit 27921b2

Please sign in to comment.