Skip to content

Commit 27f4aee

Browse files
committed
more docs fix
1 parent e3ee4ce commit 27f4aee

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

sql/pipelines/src/main/scala/org/apache/spark/sql/pipelines/graph/GraphIdentifierManager.scala

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ object GraphIdentifierManager {
112112
*
113113
* @param rawTableIdentifier the raw table identifier
114114
* @return the parsed table identifier
115-
* @throws AnalysisException if the table identifier is not allowed
116115
*/
117116
@throws[AnalysisException]
118117
def parseAndQualifyTableIdentifier(
@@ -138,7 +137,6 @@ object GraphIdentifierManager {
138137
*
139138
* @param rawViewIdentifier the raw view identifier
140139
* @return the parsed view identifier
141-
* @throws AnalysisException if the view identifier is not allowed
142140
*/
143141
@throws[AnalysisException]
144142
def parseAndValidateTemporaryViewIdentifier(
@@ -163,7 +161,6 @@ object GraphIdentifierManager {
163161
* @param currentCatalog the catalog
164162
* @param currentDatabase the schema
165163
* @return the parsed view identifier
166-
* @throws AnalysisException if the view identifier is not allowed
167164
*/
168165
def parseAndValidatePersistedViewIdentifier(
169166
rawViewIdentifier: TableIdentifier,
@@ -188,7 +185,6 @@ object GraphIdentifierManager {
188185
*
189186
* @param rawFlowIdentifier the raw flow identifier
190187
* @return the parsed flow identifier
191-
* @throws AnalysisException if the flow identifier is not allowed
192188
*/
193189
@throws[AnalysisException]
194190
def parseAndQualifyFlowIdentifier(
@@ -240,7 +236,6 @@ object IdentifierHelper {
240236
*
241237
* @param nameParts the dataset name parts.
242238
* @return the table identifier constructed from the name parts.
243-
* @throws UnsupportedOperationException if the name parts have more than 3 parts.
244239
*/
245240
@throws[UnsupportedOperationException]
246241
def toTableIdentifier(nameParts: Seq[String]): TableIdentifier = {
@@ -265,7 +260,6 @@ object IdentifierHelper {
265260
*
266261
* @param table the logical plan.
267262
* @return the table identifier constructed from the logical plan.
268-
* @throws SparkException if the table identifier cannot be resolved.
269263
*/
270264
def toTableIdentifier(table: LogicalPlan): TableIdentifier = {
271265
val parts = table match {

0 commit comments

Comments
 (0)