[
https://issues.apache.org/jira/browse/ASTERIXDB-2580?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Till updated ASTERIXDB-2580:
----------------------------
Description:
The following statement wouldn't work simply because of the quotes are not
recognized by AsterixDB
{noformat}
DROP DATAVERSE cs122aTest IF EXISTS;
CREATE DATAVERSE cs122aTest;
USE cs122aTest;
CREATE TYPE TestType AS \{id: int};
CREATE DATASET TestData(TestType) PRIMARY KEY id;
LOAD DATASET TestData USING localfs
((“path”=“:///.../TestData.json”),(“format”=“adm”));
SELECT * FROM TestData;
{noformat}
> LOAD statement is very picky on quotes
> --------------------------------------
>
> Key: ASTERIXDB-2580
> URL: https://issues.apache.org/jira/browse/ASTERIXDB-2580
> Project: Apache AsterixDB
> Issue Type: Bug
> Reporter: Xikui Wang
> Priority: Major
>
> The following statement wouldn't work simply because of the quotes are not
> recognized by AsterixDB
> {noformat}
> DROP DATAVERSE cs122aTest IF EXISTS;
> CREATE DATAVERSE cs122aTest;
> USE cs122aTest;
> CREATE TYPE TestType AS \{id: int};
> CREATE DATASET TestData(TestType) PRIMARY KEY id;
> LOAD DATASET TestData USING localfs
> ((“path”=“:///.../TestData.json”),(“format”=“adm”));
> SELECT * FROM TestData;
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)