You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@carbondata.apache.org by "Vinod Rohilla (JIRA)" <ji...@apache.org> on 2017/04/04 11:42:41 UTC

[jira] [Created] (CARBONDATA-851) Incorrect result displays while range filter query.

Vinod Rohilla created CARBONDATA-851:
----------------------------------------

             Summary: Incorrect result displays while range filter query. 
                 Key: CARBONDATA-851
                 URL: https://issues.apache.org/jira/browse/CARBONDATA-851
             Project: CarbonData
          Issue Type: Bug
          Components: data-query
    Affects Versions: 1.0.0-incubating
         Environment: Spark 2.1
            Reporter: Vinod Rohilla
            Priority: Trivial
         Attachments: 2000_UniqData.csv

Incorrect result displays to a user while use Greater then or equal to (>=) operator.

Steps to Reproduces:
1:Create table :
CREATE TABLE uniqdata (CUST_ID int,CUST_NAME String,ACTIVE_EMUI_VERSION string, DOB timestamp, DOJ timestamp, BIGINT_COLUMN1 bigint,BIGINT_COLUMN2 bigint,DECIMAL_COLUMN1 decimal(30,10), DECIMAL_COLUMN2 decimal(36,10),Double_COLUMN1 double, Double_COLUMN2 double,INTEGER_COLUMN1 int) STORED BY 'org.apache.carbondata.format' TBLPROPERTIES ("TABLE_BLOCKSIZE"= "256 MB");

2:Load Data:
LOAD DATA INPATH 'HDFS_URL/BabuStore/Data/uniqdata/2000_UniqData.csv' into table uniqdata OPTIONS('DELIMITER'=',' , 'QUOTECHAR'='"','BAD_RECORDS_ACTION'='FORCE','FILEHEADER'='CUST_ID,CUST_NAME,ACTIVE_EMUI_VERSION,DOB,DOJ,BIGINT_COLUMN1,BIGINT_COLUMN2,DECIMAL_COLUMN1,DECIMAL_COLUMN2,Double_COLUMN1,Double_COLUMN2,INTEGER_COLUMN1');

3:Run the Query:
select dob from uniqdata where dob <= '1972-12-10 01:00:03.0' and dob >= '1972-12-01 01:00:03.0';

Result:
+------------------------+--+
|          dob           |
+------------------------+--+
| 1972-12-02 01:00:03.0  |
| 1972-12-03 01:00:03.0  |
| 1972-12-04 01:00:03.0  |
| 1972-12-05 01:00:03.0  |
| 1972-12-06 01:00:03.0  |
| 1972-12-07 01:00:03.0  |
| 1972-12-08 01:00:03.0  |
| 1972-12-09 01:00:03.0  |
| 1972-12-10 01:00:03.0  |
+------------------------+--+

Expected Result: it should include " 1972-12-01 01:00:03.0 " in the result set.





--
This message was sent by Atlassian JIRA
(v6.3.15#6346)