Skip to content

Commit

Permalink
Merge pull request Azure#102 from vaerge/patch-1
Browse files Browse the repository at this point in the history
Bug fix for AvroExtractor.cs, change to one row per record
  • Loading branch information
MikeRys authored Oct 20, 2017
2 parents da2d0a6 + c1b7b7f commit 70ab327
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public override IEnumerable<IRow> Extract(IUnstructuredReader input, IUpdatableR
{
output.Set<object>(column.Name, null);
}

yield return output.AsReadOnly();
}

yield return output.AsReadOnly();
}
}
}
Expand Down

0 comments on commit 70ab327

Please sign in to comment.