[
https://issues.apache.org/jira/browse/ASTERIXDB-1521?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Abdullah Alamoudi updated ASTERIXDB-1521:
-----------------------------------------
Description:
when a user create a function, we store it exactly as it is.
For example
"create function test.getFullName($fname,$lname){
string-concat(
[$fname,$lname]
)
}"
will be stored as
"string-concat(
[$fname,$lname]
)"
while it can be stored as:
"string-concat([$fname,$lname])"
was:
when a user create a function, we store it exactly as it is.
For example
create function test.getFullName($fname,$lname){
string-concat(
[$fname,$lname]
)
}
will be stored as
string-concat(
[$fname,$lname]
)
while it can be stored as:
string-concat([$fname,$lname])
> Stored function body stores extra white spaces.
> -----------------------------------------------
>
> Key: ASTERIXDB-1521
> URL: https://issues.apache.org/jira/browse/ASTERIXDB-1521
> Project: Apache AsterixDB
> Issue Type: Bug
> Reporter: Abdullah Alamoudi
> Assignee: Abdullah Alamoudi
> Priority: Minor
>
> when a user create a function, we store it exactly as it is.
> For example
> "create function test.getFullName($fname,$lname){
> string-concat(
> [$fname,$lname]
> )
> }"
> will be stored as
> "string-concat(
> [$fname,$lname]
> )"
> while it can be stored as:
> "string-concat([$fname,$lname])"
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)