Abdullah Alamoudi created ASTERIXDB-1521:
--------------------------------------------
Summary: 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
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)