Skip to content

Commit

Permalink
Teiid 8 Parser updating to support 8.5-8.7
Browse files Browse the repository at this point in the history
* commit 'TEIID-2774 adding the wellformed parameter to the parser'
  • Loading branch information
Paul Richardson committed Mar 27, 2014
1 parent 4e95836 commit 756fd1d
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4543,7 +4543,13 @@ Expression function(ParseInfo info) #Function :
literal = stringVal()
{
args.add(constant(literal));
}
}
[<COMMA> expression = expression(info)
{
requires(versionAtLeast(Version.TEIID_8_6));
args.add(expression);
}
]
<RPAREN>
)
|
Expand Down

0 comments on commit 756fd1d

Please sign in to comment.