Skip to content

Fix Query Grammar #477

@sebbader-sap

Description

@sebbader-sap

What happens?

Bug fix needed for security and query in grammar:

<ws> ::= ( " " | "\t" | "\r" | "\n" )+
<idShortPath> ::= ( <idShort> ("[" ( [0-9]* ) "]" ) ( "." <idShortPath> )* )

Why is this wrong?

No space etc. should be allowed as well.

How should it be fixed?

<ws> ::= ( " " | "\t" | "\r" | "\n" )*
<idShortPath> ::= ( <idShort> ("[" ( [0-9]* ) "]" )* ( "." <idShortPath> )* )
  • I have signed the required Developer Certificate of Origin (DCO) already.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions