[OLINGO-434] Fixed wrong MINUS position in Antlr file
This commit is contained in:
parent
d3dac46edc
commit
4a4b110f99
|
@ -132,6 +132,8 @@ TRUE : 'true';
|
||||||
FALSE : 'false';
|
FALSE : 'false';
|
||||||
BOOLEAN : T R U E | F A L S E;
|
BOOLEAN : T R U E | F A L S E;
|
||||||
PLUS : '+';
|
PLUS : '+';
|
||||||
|
|
||||||
|
MINUS : '-';
|
||||||
SIGN : PLUS | '%2B' | '-';
|
SIGN : PLUS | '%2B' | '-';
|
||||||
INT : SIGN? DIGITS;
|
INT : SIGN? DIGITS;
|
||||||
DECIMAL : INT '.' DIGITS (('e'|'E') SIGN? DIGITS)?;
|
DECIMAL : INT '.' DIGITS (('e'|'E') SIGN? DIGITS)?;
|
||||||
|
@ -184,7 +186,7 @@ OR : 'or';
|
||||||
|
|
||||||
|
|
||||||
NOT : 'not';
|
NOT : 'not';
|
||||||
MINUS :'-';
|
|
||||||
|
|
||||||
IT : '$it';
|
IT : '$it';
|
||||||
ITSLASH : '$it/';
|
ITSLASH : '$it/';
|
||||||
|
|
|
@ -2177,5 +2177,4 @@ public class UriParseTreeVisitor extends UriParserBaseVisitor<Object> {
|
||||||
alias.setParameter("@"+ctx.odataIdentifier().getChild(0).getText());
|
alias.setParameter("@"+ctx.odataIdentifier().getChild(0).getText());
|
||||||
return alias;
|
return alias;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,11 @@ public class TestLexer {
|
||||||
// ; 0. URI
|
// ; 0. URI
|
||||||
// ;------------------------------------------------------------------------------
|
// ;------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testUnary() {
|
||||||
|
test.run("- a eq a").isAllInput();
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testUriTokens() {
|
public void testUriTokens() {
|
||||||
test.globalMode(UriLexer.MODE_QUERY);
|
test.globalMode(UriLexer.MODE_QUERY);
|
||||||
|
|
|
@ -566,6 +566,12 @@ public class TestUriParserImpl {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testUnary() throws UriParserException {
|
||||||
|
testFilter.runESabc("not a").isCompr("<not <a>>");
|
||||||
|
testFilter.runESabc("- a eq a").isCompr("<<- <a>> eq <a>>");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testFilterComplexMixedPriority() throws UriParserException {
|
public void testFilterComplexMixedPriority() throws UriParserException {
|
||||||
testFilter.runESabc("a or c and e ").isCompr("< <a> or < <c> and <e> >>");
|
testFilter.runESabc("a or c and e ").isCompr("< <a> or < <c> and <e> >>");
|
||||||
|
@ -576,7 +582,6 @@ public class TestUriParserImpl {
|
||||||
testFilter.runESabc("a eq b or c and e eq f").isCompr("<<<a> eq <b>> or < <c> and <<e> eq <f>>>>");
|
testFilter.runESabc("a eq b or c and e eq f").isCompr("<<<a> eq <b>> or < <c> and <<e> eq <f>>>>");
|
||||||
testFilter.runESabc("a eq b or c eq d and e ").isCompr("<<<a> eq <b>> or <<<c> eq <d>> and <e> >>");
|
testFilter.runESabc("a eq b or c eq d and e ").isCompr("<<<a> eq <b>> or <<<c> eq <d>> and <e> >>");
|
||||||
testFilter.runESabc("a eq b or c eq d and e eq f").isCompr("<<<a> eq <b>> or <<<c> eq <d>> and <<e> eq <f>>>>");
|
testFilter.runESabc("a eq b or c eq d and e eq f").isCompr("<<<a> eq <b>> or <<<c> eq <d>> and <<e> eq <f>>>>");
|
||||||
testFilter.runESabc("not a").isCompr("<not <a>>");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -1055,7 +1060,7 @@ public class TestUriParserImpl {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testAlias() throws Exception {
|
public void testAlias() throws Exception {
|
||||||
testUri.run("ESAllPrim?$filter=PropertyInt16 eq @p1&@p1=1)")
|
testUri.run("ESAllPrim", "$filter=PropertyInt16 eq @p1&@p1=1)")
|
||||||
.goFilter().is("<<PropertyInt16> eq <@p1>>");
|
.goFilter().is("<<PropertyInt16> eq <@p1>>");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue