Re: Spark SQL does not read from cached table if table is renamed

2015-04-02 Thread Michael Armbrust
I'll add we just back ported this so it'll be included in 1.2.2 also. On Wed, Apr 1, 2015 at 4:14 PM, Michael Armbrust wrote: > This is fixed in Spark 1.3. > https://issues.apache.org/jira/browse/SPARK-5195 > > On Wed, Apr 1, 2015 at 4:05 PM, Judy Nash > wrote: > >> Hi all, >> >> >> >> Noticed

Re: Spark SQL does not read from cached table if table is renamed

2015-04-01 Thread Michael Armbrust
This is fixed in Spark 1.3. https://issues.apache.org/jira/browse/SPARK-5195 On Wed, Apr 1, 2015 at 4:05 PM, Judy Nash wrote: > Hi all, > > > > Noticed a bug in my current version of Spark 1.2.1. > > > > After a table is cached with “cache table ” command, query will not > read from memory if S

Spark SQL does not read from cached table if table is renamed

2015-04-01 Thread Judy Nash
Hi all, Noticed a bug in my current version of Spark 1.2.1. After a table is cached with "cache table " command, query will not read from memory if SQL query renames the table. This query reads from in memory table i.e. select hivesampletable.country from default.hivesampletable group by hive