We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab07f7e commit a6f5df1Copy full SHA for a6f5df1
sql/hive/src/main/scala/org/apache/spark/sql/hive/client/ClientWrapper.scala
@@ -116,7 +116,7 @@ class ClientWrapper(
116
}
117
118
/** Returns the configuration for the current session. */
119
- def conf = SessionState.get().getConf
+ def conf: HiveConf = SessionState.get().getConf
120
121
private val client = Hive.get(conf)
122
@@ -148,7 +148,7 @@ class ClientWrapper(
148
def setInfo(stream: PrintStream): Unit = withHiveState {
149
state.info = stream
150
151
-
+
152
def setError(stream: PrintStream): Unit = withHiveState {
153
state.err = stream
154
0 commit comments