mspruc opened a new pull request, #585:
URL: https://github.com/apache/incubator-wayang/pull/585
You should now be able to specify custom delimiters for your calcite models
in the sql-api, like so:
```
{
"calcite": {
"version": "1.0",
"defaultSchema": "wayang",
"schemas": [
{
"name": "fs",
"type": "custom",
"factory": "org.apache.calcite.adapter.file.FileSchemaFactory",
"operand": {
"directory": "<data path>"
"delimiter":"<custom delimiter>"
}
}
]
}
```
With the key part being:
```
"operand": {
...
"delimiter":"<custom delimiter>"
...
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]