Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
ealsur committed May 28, 2024
1 parent da7ae54 commit 7c29b01
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ namespace Microsoft.Azure.Cosmos.Query

internal abstract class DocumentQueryExecutionContextBase : IDocumentQueryExecutionContext
{
// ISSUE-TODO-adityasa-2024/5/27 - Re-enable binary format. Currently encryption codepath is not able to handle binary response.
public static readonly string DefaultSupportedSerializationFormats = SupportedSerializationFormats.JsonText.ToString();

public static readonly string DefaultSupportedSerializationFormats = string.Join(",", SupportedSerializationFormats.JsonText, SupportedSerializationFormats.CosmosBinary);

public readonly struct InitParams
{
public IDocumentQueryClient Client { get; }
Expand Down

0 comments on commit 7c29b01

Please sign in to comment.