[
https://issues.apache.org/jira/browse/ASTERIXDB-1269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Yingyi Bu reassigned ASTERIXDB-1269:
------------------------------------
Assignee: Abdullah Alamoudi (was: Yingyi Bu)
[~amoudi], this has already been fixed?
> UDF body has to be in different lines from the wrapping parens
> --------------------------------------------------------------
>
> Key: ASTERIXDB-1269
> URL: https://issues.apache.org/jira/browse/ASTERIXDB-1269
> Project: Apache AsterixDB
> Issue Type: Bug
> Components: Translator - AQL
> Reporter: Yingyi Bu
> Assignee: Abdullah Alamoudi
>
> The following query will fail the parser because the function body stays in
> the same line of the wrapping parens. The parser thinks the wrapping parens
> are part of the declared UDF body.
> {noformat}
> drop database test if exists;
> create database test;
> use test;
> create function printName() { 'AsterixDB Shared nothing parallel BDMS' }
> {noformat}
> This alternative works:
> {noformat}
> drop database test if exists;
> create database test;
> use test;
> create function printName() {
> 'AsterixDB Shared nothing parallel BDMS'
> }
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)