[ 
https://issues.apache.org/jira/browse/ASTERIXDB-1269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Abdullah Alamoudi closed ASTERIXDB-1269.
----------------------------------------

> 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: AQL - Translator AQL
>            Reporter: Yingyi Bu
>            Assignee: Abdullah Alamoudi
>            Priority: Major
>
> 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
(v7.6.3#76005)

Reply via email to