CLI2: Fixed bug in UUID filtering
- When filtering by UUID, the expression listed the 'uuid' attribute as a type Lexer::Type::string, which should have been Lexer::Type::dom.
This commit is contained in:
@@ -1296,7 +1296,7 @@ void CLI2::insertIDExpr ()
|
|||||||
A2 argID ("id", Lexer::Type::dom);
|
A2 argID ("id", Lexer::Type::dom);
|
||||||
argID.tag ("FILTER");
|
argID.tag ("FILTER");
|
||||||
|
|
||||||
A2 argUUID ("uuid", Lexer::Type::uuid);
|
A2 argUUID ("uuid", Lexer::Type::dom);
|
||||||
argUUID.tag ("FILTER");
|
argUUID.tag ("FILTER");
|
||||||
|
|
||||||
reconstructed.push_back (openParen);
|
reconstructed.push_back (openParen);
|
||||||
|
|||||||
Reference in New Issue
Block a user