Skip to content

Commit

Permalink
Pull/Rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
adityasa committed Oct 11, 2022
1 parent bcba12a commit b76a976
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@ private static PartitionedQueryExecutionInfo GetPartitionedQueryExecutionInfo(st
allowNonValueAggregateQuery: true,
hasLogicalPartitionKey: false,
allowDCount: true,
useSystemPrefix: false);
useSystemPrefix: false,
geospatialType: Cosmos.GeospatialType.Geography);

return tryGetQueryPlan.Result;
}
Expand Down Expand Up @@ -611,7 +612,7 @@ public override Task<IReadOnlyList<PartitionKeyRange>> TryGetOverlappingRangesAs
throw new NotImplementedException();
}

public override Task<TryCatch<PartitionedQueryExecutionInfo>> TryGetPartitionedQueryExecutionInfoAsync(SqlQuerySpec sqlQuerySpec, ResourceType resourceType, PartitionKeyDefinition partitionKeyDefinition, bool requireFormattableOrderByQuery, bool isContinuationExpected, bool allowNonValueAggregateQuery, bool hasLogicalPartitionKey, bool allowDCount, bool useSystemPrefix, CancellationToken cancellationToken)
public override Task<TryCatch<PartitionedQueryExecutionInfo>> TryGetPartitionedQueryExecutionInfoAsync(SqlQuerySpec sqlQuerySpec, ResourceType resourceType, PartitionKeyDefinition partitionKeyDefinition, bool requireFormattableOrderByQuery, bool isContinuationExpected, bool allowNonValueAggregateQuery, bool hasLogicalPartitionKey, bool allowDCount, bool useSystemPrefix, Cosmos.GeospatialType geospatialType, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
Expand Down

0 comments on commit b76a976

Please sign in to comment.