@@ -112,7 +112,6 @@ object GraphIdentifierManager {
112
112
*
113
113
* @param rawTableIdentifier the raw table identifier
114
114
* @return the parsed table identifier
115
- * @throws AnalysisException if the table identifier is not allowed
116
115
*/
117
116
@ throws[AnalysisException ]
118
117
def parseAndQualifyTableIdentifier (
@@ -138,7 +137,6 @@ object GraphIdentifierManager {
138
137
*
139
138
* @param rawViewIdentifier the raw view identifier
140
139
* @return the parsed view identifier
141
- * @throws AnalysisException if the view identifier is not allowed
142
140
*/
143
141
@ throws[AnalysisException ]
144
142
def parseAndValidateTemporaryViewIdentifier (
@@ -163,7 +161,6 @@ object GraphIdentifierManager {
163
161
* @param currentCatalog the catalog
164
162
* @param currentDatabase the schema
165
163
* @return the parsed view identifier
166
- * @throws AnalysisException if the view identifier is not allowed
167
164
*/
168
165
def parseAndValidatePersistedViewIdentifier (
169
166
rawViewIdentifier : TableIdentifier ,
@@ -188,7 +185,6 @@ object GraphIdentifierManager {
188
185
*
189
186
* @param rawFlowIdentifier the raw flow identifier
190
187
* @return the parsed flow identifier
191
- * @throws AnalysisException if the flow identifier is not allowed
192
188
*/
193
189
@ throws[AnalysisException ]
194
190
def parseAndQualifyFlowIdentifier (
@@ -240,7 +236,6 @@ object IdentifierHelper {
240
236
*
241
237
* @param nameParts the dataset name parts.
242
238
* @return the table identifier constructed from the name parts.
243
- * @throws UnsupportedOperationException if the name parts have more than 3 parts.
244
239
*/
245
240
@ throws[UnsupportedOperationException ]
246
241
def toTableIdentifier (nameParts : Seq [String ]): TableIdentifier = {
@@ -265,7 +260,6 @@ object IdentifierHelper {
265
260
*
266
261
* @param table the logical plan.
267
262
* @return the table identifier constructed from the logical plan.
268
- * @throws SparkException if the table identifier cannot be resolved.
269
263
*/
270
264
def toTableIdentifier (table : LogicalPlan ): TableIdentifier = {
271
265
val parts = table match {
0 commit comments