Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public ConsistencyLevel? ConsistencyLevel

internal FeedRange FeedRange { get; set; }

internal bool IsHybridSearchQueryPlanOptimizationDisabled { get; set; } = ConfigurationManager.IsHybridSearchQueryPlanOptimizationDisabled(defaultValue: false);
internal bool IsHybridSearchQueryPlanOptimizationDisabled { get; set; } = ConfigurationManager.IsHybridSearchQueryPlanOptimizationDisabled(defaultValue: true);

// This is a temporary flag to enable the distributed query gateway mode.
// This flag will be removed once we have a way for the client to determine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static async Task ImplementationAsync(Container container, IReadOnlyList<CosmosO
MakeQueryFeaturesTest(
environmentVariable: null,
requestOption: null,
expectHybridSearchOptimizationDisabled: false),
expectHybridSearchOptimizationDisabled: true),
MakeQueryFeaturesTest(
environmentVariable: true,
requestOption: null,
Expand Down
Loading