You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here, the expectation is that the "options" that have the parallel query specific options/settings will be passed to:
parallelQueryWithPagingAndContinuationTokenAndPrintQueryCharge - in the method that is called the options parameter passed in the method is never used.
The parallelQueryWithPagingAndContinuationTokenAndPrintQueryCharge() method is written to set its own "default" CosmosQueryRequestOptions and never honor or checks for the parameter.
Likewise the main execution of the queriesDemo() Line 102 calls the method with a new constructor to satisfy the parameter signature, but it too is not used.
The text was updated successfully, but these errors were encountered:
azure-cosmos-java-sql-api-samples/src/main/java/com/azure/cosmos/examples/queries/sync/QueriesQuickstart.java
Line 211 in 3a7314e
In the sample code Line: 263: parallelQueryWithPagingAndContinuationTokenAndPrintQueryCharge()
The example method attempts to re-use the existing method:
Here, the expectation is that the "options" that have the parallel query specific options/settings will be passed to:
parallelQueryWithPagingAndContinuationTokenAndPrintQueryCharge - in the method that is called the options parameter passed in the method is never used.
The parallelQueryWithPagingAndContinuationTokenAndPrintQueryCharge() method is written to set its own "default" CosmosQueryRequestOptions and never honor or checks for the parameter.
Likewise the main execution of the queriesDemo() Line 102 calls the method with a new constructor to satisfy the parameter signature, but it too is not used.
The text was updated successfully, but these errors were encountered: