Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions sql-statements/sql-statement-alter-user.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ UserSpecList ::=
UserSpec ::=
Username AuthOption

<<<<<<< HEAD
RequireClauseOpt ::=
( 'REQUIRE' 'NONE' | 'REQUIRE' 'SSL' | 'REQUIRE' 'X509' | 'REQUIRE' RequireList )?

RequireList ::=
( "ISSUER" stringLit | "SUBJECT" stringLit | "CIPHER" stringLit | "SAN" stringLit | "TOKEN_ISSUER" stringLit )*

=======
>>>>>>> 1b5366d40f (Fix duplicate items in CREATE USER and ALTER USER (#21939))
Username ::=
StringName ('@' StringName | singleAtIdentifier)? | 'CURRENT_USER' OptionalBraces

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These lines represent merge conflict markers and a duplicate definition of RequireClauseOpt and RequireList. Removing them correctly resolves the conflict and improves the clarity of the syntax definition by eliminating redundancy 1.

Style Guide References

Footnotes

  1. Avoid unnecessary words and repetition.

Expand Down
3 changes: 3 additions & 0 deletions sql-statements/sql-statement-create-user.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ IfNotExists ::=
UserSpecList ::=
UserSpec ( ',' UserSpec )*

<<<<<<< HEAD
RequireClauseOpt ::=
( 'REQUIRE' 'NONE' | 'REQUIRE' 'SSL' | 'REQUIRE' 'X509' | 'REQUIRE' RequireList )?

RequireList ::=
( "ISSUER" stringLit | "SUBJECT" stringLit | "CIPHER" stringLit | "SAN" stringLit | "TOKEN_ISSUER" stringLit )*

=======
>>>>>>> 1b5366d40f (Fix duplicate items in CREATE USER and ALTER USER (#21939))
UserSpec ::=
Username AuthOption

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These lines represent merge conflict markers and a duplicate definition of RequireClauseOpt and RequireList. Removing them correctly resolves the conflict and improves the clarity of the syntax definition by eliminating redundancy 1.

Style Guide References

Footnotes

  1. Avoid unnecessary words and repetition.

Expand Down