[jira] [Created] (CARBONDATA-791) Exists queries of TPC-DS are failing in carbon
Posted by
Akash R Nilugal (Jira) on
Mar 18, 2017; 6:44am
URL: http://apache-carbondata-dev-mailing-list-archive.168.s1.nabble.com/jira-Created-CARBONDATA-791-Exists-queries-of-TPC-DS-are-failing-in-carbon-tp9211.html
Ravindra Pesala created CARBONDATA-791:
------------------------------------------
Summary: Exists queries of TPC-DS are failing in carbon
Key: CARBONDATA-791
URL:
https://issues.apache.org/jira/browse/CARBONDATA-791 Project: CarbonData
Issue Type: Bug
Reporter: Ravindra Pesala
Exists queries are failing in carbon.
These are required in TPC-DS test.
Testcase to reproduce.
{code}
val df = sqlContext.sparkContext.parallelize(1 to 1000).map(x => (x+"", (x+100)+"")).toDF("c1", "c2")
df.write
.format("carbondata")
.mode(SaveMode.Overwrite)
.option("tableName", "carbon")
.save()
sql("select * from carbon where c1='200' and exists(select * from carbon)")
{code}
It fails in carbon.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)