Skip to content

Commit

Permalink
[Internal] Query: Adds SqlQueryParser visibility (#3318)
Browse files Browse the repository at this point in the history
Co-authored-by: neildsh <35383880+neildsh@users.noreply.github.com>
Co-authored-by: Kiran Kumar Kolli <kirankk@microsoft.com>
Co-authored-by: Matias Quaranta <ealsur@users.noreply.github.com>
  • Loading branch information
4 people committed Aug 16, 2022
1 parent b713ce4 commit 83d9f70
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ namespace Microsoft.Azure.Cosmos.Query.Core.Parser
using Microsoft.Azure.Cosmos.Query.Core.Monads;
using Microsoft.Azure.Cosmos.SqlObjects;

internal static class SqlQueryParser
#if INTERNAL
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
#pragma warning disable SA1600 // Elements should be documented
public
#else
internal
#endif
static class SqlQueryParser
{
public static class Monadic
{
Expand Down

0 comments on commit 83d9f70

Please sign in to comment.