Github user tejasapatil commented on a diff in the pull request:

    https://github.com/apache/spark/pull/18309#discussion_r122217717
  
    --- Diff: 
sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala ---
    @@ -128,6 +128,40 @@ class StatisticsSuite extends 
StatisticsCollectionTestBase with TestHiveSingleto
           TableIdentifier("tempTable"), ignoreIfNotExists = true, purge = 
false)
       }
     
    +  test("SPARK-21079 - analyze table with location different than that of 
individual partitions") {
    +    def queryTotalSize(tableName: String): BigInt =
    +      
spark.table(tableName).queryExecution.analyzed.stats(conf).sizeInBytes
    +
    +    sql(
    +      """
    +        |CREATE TABLE analyzeTable_part (key STRING, value STRING) 
PARTITIONED BY (ds STRING)
    +      """.stripMargin).collect()
    +    sql(
    +      """
    +        |INSERT INTO TABLE analyzeTable_part PARTITION (ds='2010-01-01')
    +        |SELECT * FROM src
    +      """.stripMargin).collect()
    +    sql(
    +      """
    +        |INSERT INTO TABLE analyzeTable_part PARTITION (ds='2010-01-02')
    +        |SELECT * FROM src
    +      """.stripMargin).collect()
    +    sql(
    --- End diff --
    
    All the three partitions point reside under the same base dir. In reality 
it might be possible that all three are pointing to different locations. You 
could simulate that by creating empty partition (`ALTER TABLE ... ADD 
PARTITION`), then doing a `ALTER TABLE table_name [PARTITION partition_spec] 
SET LOCATION "new location"` and finally inserting data to the partition.


---
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.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to