Description
Add a test case based on the following example. The behavior was changed in 2.3 release. We also need to upgrade the migration guide.
val someDF1 = Seq( (1, 1, "blah"), (1, 2, "blahblah") ).toDF("folder", "number", "word").repartition(1) someDF1.write.orc("/tmp/orctab1/dir1/") someDF1.write.orc("/mnt/orctab1/dir2/") create external table tab1(folder int,number int,word string) STORED AS ORC LOCATION '/tmp/orctab1/"); select * from tab1; create external table tab2(folder int,number int,word string) STORED AS ORC LOCATION '/tmp/orctab1/*"); select * from tab2;