Surya Hebbar has uploaded this change for review. ( 
http://gerrit.cloudera.org:8080/23996


Change subject: IMPALA-13464: Support STORED AS CSV syntactic sugar
......................................................................

IMPALA-13464: Support STORED AS CSV syntactic sugar

It'd be helpful to add a syntactic sugar for creating CSV/TSV tablesm
then users would just need to remember "STORED AS CSV".

e.g.
  create table my_csv_tbl(first_name string, age int)
  stored as csv;

Instead of a long statement like the following,

e.g.

  create table my_csv_tbl(first_name string, age int)
  row format delimited fields terminated by ','
  stored as textfile;

Change-Id: Ia5ef21e7b2029314ac772b3465cac20a8a0d9a7b
---
M fe/src/main/cup/sql-parser.cup
M fe/src/main/jflex/sql-scanner.flex
2 files changed, 15 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/96/23996/1
--
To view, visit http://gerrit.cloudera.org:8080/23996
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia5ef21e7b2029314ac772b3465cac20a8a0d9a7b
Gerrit-Change-Number: 23996
Gerrit-PatchSet: 1
Gerrit-Owner: Surya Hebbar <[email protected]>

Reply via email to