Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/3022#discussion_r244085418
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/integration/spark/testsuite/complexType/TestCompactionComplexType.scala
---
@@ -1068,4 +1068,40 @@ class TestCompactionComplexType extends QueryTest
with BeforeAndAfterAll {
sql("Drop table if exists adaptive")
}
+ test("Test major compaction for struct of array type") {
+ sql("DROP TABLE IF EXISTS carbon")
--- End diff --
1. Include dropping of table in afterAll also
2. Give the test case description as below
`Test major compaction with dictionary include for struct of array type`
---