Skip to content

Commit

Permalink
Remove obsolete BigQueryResults constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
jskeet committed Feb 19, 2020
1 parent 165aa40 commit 3c900ed
Showing 1 changed file with 0 additions and 18 deletions.
Expand Up @@ -93,24 +93,6 @@ public sealed class BigQueryResults : IEnumerable<BigQueryRow>
/// <returns>An iterator over the query results.</returns>
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();

/// <summary>
/// Constructs a new set of results.
/// </summary>
/// <remarks>
/// This is public to allow tests to construct instances for production code to consume;
/// production code should not normally construct instances itself.
/// </remarks>
/// <param name="client">The client to use for further operations. Must not be null.</param>
/// <param name="response">The response to a GetQueryResults API call. Must not be null.</param>
/// <param name="tableReference">A reference to the table containing the results.
/// May be null. (For example, script queries don't store results in tables.)</param>
/// <param name="options">Options to use when listing rows. May be null.</param>
[Obsolete("Please use the constructor accepting a GetQueryResultsOptions instead")]
public BigQueryResults(BigQueryClient client, GetQueryResultsResponse response, TableReference tableReference, ListRowsOptions options)
: this(client, response, tableReference, options?.ToGetQueryResultsOptions())
{
}

/// <summary>
/// Constructs a new set of results.
/// </summary>
Expand Down

0 comments on commit 3c900ed

Please sign in to comment.