Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ public class QueryRequestOptions : RequestOptions
/// <value>
/// Direct (optimistic) execution offers improved performance for several kinds of queries such as a single partition streaming query.
/// </value>
public bool EnableOptimisticDirectExecution { get; set; }
#if PREVIEW
public bool EnableOptimisticDirectExecution { get; set; } = true;
#else
internal bool EnableOptimisticDirectExecution { get; set; }
#endif

/// <summary>
/// Gets or sets the maximum number of items that can be buffered client side during
Expand Down