Skip to content

Commit 523d32c

Browse files
committed
Widen Hive visibility
1 parent fffb0c0 commit 523d32c

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/execution/CreateHiveTableAsSelectCommand.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import org.apache.spark.sql.hive.MetastoreRelation
3434
* @param ignoreIfExists allow continue working if it's already exists, otherwise
3535
* raise exception
3636
*/
37-
private[hive]
3837
case class CreateHiveTableAsSelectCommand(
3938
tableDesc: CatalogTable,
4039
query: LogicalPlan,

sql/hive/src/main/scala/org/apache/spark/sql/hive/execution/ScriptTransformation.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ import org.apache.spark.util.{CircularBuffer, RedirectThread, SerializableConfig
5151
* @param script the command that should be executed.
5252
* @param output the attributes that are produced by the script.
5353
*/
54-
private[hive]
5554
case class ScriptTransformation(
5655
input: Seq[Expression],
5756
script: String,
@@ -338,7 +337,6 @@ private class ScriptTransformationWriterThread(
338337
}
339338
}
340339

341-
private[hive]
342340
object HiveScriptIOSchema {
343341
def apply(input: ScriptInputOutputSchema): HiveScriptIOSchema = {
344342
HiveScriptIOSchema(
@@ -357,7 +355,6 @@ object HiveScriptIOSchema {
357355
/**
358356
* The wrapper class of Hive input and output schema properties
359357
*/
360-
private[hive]
361358
case class HiveScriptIOSchema (
362359
inputRowFormat: Seq[(String, String)],
363360
outputRowFormat: Seq[(String, String)],

sql/hive/src/main/scala/org/apache/spark/sql/hive/orc/OrcFileFormat.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ import org.apache.spark.util.SerializableConfiguration
4545
* [[FileFormat]] for reading ORC files. If this is moved or renamed, please update
4646
* [[DataSource]]'s backwardCompatibilityMap.
4747
*/
48-
private[sql] class OrcFileFormat
49-
extends FileFormat with DataSourceRegister with Serializable {
48+
class OrcFileFormat extends FileFormat with DataSourceRegister with Serializable {
5049

5150
override def shortName(): String = "orc"
5251

0 commit comments

Comments
 (0)