[jira] [Created] (CARBONDATA-717) AND operator does not work properly in carbondata
Posted by
Akash R Nilugal (Jira) on
Feb 22, 2017; 5:39am
URL: http://apache-carbondata-dev-mailing-list-archive.168.s1.nabble.com/jira-Created-CARBONDATA-717-AND-operator-does-not-work-properly-in-carbondata-tp7819.html
Vinod Rohilla created CARBONDATA-717:
----------------------------------------
Summary: AND operator does not work properly in carbondata
Key: CARBONDATA-717
URL:
https://issues.apache.org/jira/browse/CARBONDATA-717 Project: CarbonData
Issue Type: Bug
Components: sql
Affects Versions: 1.0.0-incubating
Environment: Spark 2.1
Reporter: Vinod Rohilla
Priority: Minor
Attachments: sample.csv
Incorrect result displays to a user while use AND operator.
Steps to Reproduce:
1: create a table:
CREATE TABLE IF NOT EXISTS t4 (ID string, name string) STORED BY 'carbondata';
2:Load the data
LOAD DATA LOCAL INPATH '/home/Desktop/sample.csv' into table t4;
3:Total record in the table.
0: jdbc:hive2://localhost:10000> select * from t4;
+-----+--------+--+
| ID | name |
+-----+--------+--+
| 1 | david |
| 2 | eason |
| 3 | jarry |
+-----+--------+--+
4: SELECT * FROM t3 where id>=1 and id <3;
0: jdbc:hive2://localhost:10000> SELECT * FROM t4 where id>=1 and id <3;
+-----+--------+--+
| ID | name |
+-----+--------+--+
| 2 | eason |
| 3 | jarry |
+-----+--------+--+
Expected Result: It should show the below result:
0: jdbc:hive2://localhost:10000> SELECT * FROM t4 where id>=1 and id <3;
+-----+--------+--+
| ID | name |
+-----+--------+--+
| 1 | david |
| 2 | eason |
+-----+--------+--+
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)