[
https://issues.apache.org/jira/browse/ASTERIXDB-2580?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Till updated ASTERIXDB-2580:
----------------------------
Docs Text:
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}
was:
The following statement wouldn't work simply because of the quotes are not
recognized by AsterixDB
{code}
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;
{code}
> 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
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)