Github user jihoonson commented on a diff in the pull request:
https://github.com/apache/tajo/pull/1037#discussion_r71061686
--- Diff:
tajo-core/src/main/java/org/apache/tajo/parser/sql/SQLAnalyzer.java ---
@@ -1325,6 +1325,9 @@ public Expr
visitCreate_table_statement(Create_table_statementContext ctx) {
if (checkIfExist(ctx.USING())) {
String fileType = ctx.storage_type.getText();
+ if (fileType.equals("csv")) {
+ throw new TajoRuntimeException(new SQLSyntaxError("Creating csv
storage type table is disallowed from 0.12."));
--- End diff --
It would be better to let users know that they use ```text``` instead of
```csv```. In addition, I think it would be better if a specific version name
is not included in the error message for maintenance issue.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---