Github user chenliang613 commented on a diff in the pull request:
https://github.com/apache/incubator-carbondata/pull/311#discussion_r87704849
--- Diff:
examples/src/main/scala/org/apache/carbondata/examples/CarbonExample.scala ---
@@ -32,24 +32,34 @@ object CarbonExample {
cc.sql("DROP TABLE IF EXISTS t3")
+ // create table, 6 dimensions, 1 measure
cc.sql("""
CREATE TABLE IF NOT EXISTS t3
(ID Int, date Timestamp, country String,
name String, phonetype String, serialname String, salary Int)
STORED BY 'carbondata'
""")
+ // load data using kettle
cc.sql(s"""
LOAD DATA LOCAL INPATH '$testData' into table t3
""")
+ // load data without kettle
--- End diff --
suggest either create a different example for without kettle or do the
different query respectively for two type of load data.
---
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.
---