-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-50507][PYTHON][TESTS][FOLLOW-UP] Add refactored package into p…
…ure Python test ### What changes were proposed in this pull request? This PR is a followup of apache/spark#49074 that adds refactored package into pure Python test ### Why are the changes needed? In order to fix the pure Python build https://github.com/apache/spark/actions/runs/12215379954/job/34077255570. ### Does this PR introduce _any_ user-facing change? No, test-only. ### How was this patch tested? Will monitor the build. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #49106 from HyukjinKwon/SPARK-50507-followup. Authored-by: Hyukjin Kwon <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
- Loading branch information
Showing
23 changed files
with
537 additions
and
5 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
connector/avro/src/main/scala/org/apache/spark/sql/avro/AvroExpressionEvalUtils.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.sql.avro | ||
|
||
import org.apache.avro.Schema | ||
|
||
import org.apache.spark.sql.catalyst.util.{ParseMode, PermissiveMode} | ||
import org.apache.spark.unsafe.types.UTF8String | ||
|
||
object AvroExpressionEvalUtils { | ||
|
||
def schemaOfAvro( | ||
avroOptions: AvroOptions, | ||
parseMode: ParseMode, | ||
expectedSchema: Schema): UTF8String = { | ||
val dt = SchemaConverters.toSqlType( | ||
expectedSchema, | ||
avroOptions.useStableIdForUnionType, | ||
avroOptions.stableIdPrefixForUnionType, | ||
avroOptions.recursiveFieldMaxDepth).dataType | ||
val schema = parseMode match { | ||
// With PermissiveMode, the output Catalyst row might contain columns of null values for | ||
// corrupt records, even if some of the columns are not nullable in the user-provided schema. | ||
// Therefore we force the schema to be all nullable here. | ||
case PermissiveMode => dt.asNullable | ||
case _ => dt | ||
} | ||
UTF8String.fromString(schema.sql) | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
connector/avro/src/main/scala/org/apache/spark/sql/avro/SchemaOfAvro.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.spark.sql.avro | ||
|
||
import org.apache.avro.Schema | ||
|
||
import org.apache.spark.sql.catalyst.expressions.{Expression, LeafExpression, Literal, RuntimeReplaceable} | ||
import org.apache.spark.sql.catalyst.expressions.objects.StaticInvoke | ||
import org.apache.spark.sql.catalyst.util.{FailFastMode, ParseMode, PermissiveMode} | ||
import org.apache.spark.sql.errors.QueryCompilationErrors | ||
import org.apache.spark.sql.internal.SQLConf | ||
import org.apache.spark.sql.types.{DataType, ObjectType} | ||
|
||
private[sql] case class SchemaOfAvro( | ||
jsonFormatSchema: String, | ||
options: Map[String, String]) | ||
extends LeafExpression with RuntimeReplaceable { | ||
|
||
override def dataType: DataType = SQLConf.get.defaultStringType | ||
|
||
override def nullable: Boolean = false | ||
|
||
@transient private lazy val avroOptions = AvroOptions(options) | ||
|
||
@transient private lazy val actualSchema = | ||
new Schema.Parser().setValidateDefaults(false).parse(jsonFormatSchema) | ||
|
||
@transient private lazy val expectedSchema = avroOptions.schema.getOrElse(actualSchema) | ||
|
||
@transient private lazy val parseMode: ParseMode = { | ||
val mode = avroOptions.parseMode | ||
if (mode != PermissiveMode && mode != FailFastMode) { | ||
throw QueryCompilationErrors.parseModeUnsupportedError( | ||
prettyName, mode | ||
) | ||
} | ||
mode | ||
} | ||
|
||
override def prettyName: String = "schema_of_avro" | ||
|
||
@transient private lazy val avroOptionsObjectType = ObjectType(classOf[AvroOptions]) | ||
@transient private lazy val parseModeObjectType = ObjectType(classOf[ParseMode]) | ||
@transient private lazy val schemaObjectType = ObjectType(classOf[Schema]) | ||
|
||
override def replacement: Expression = StaticInvoke( | ||
AvroExpressionEvalUtils.getClass, | ||
dataType, | ||
"schemaOfAvro", | ||
Seq( | ||
Literal(avroOptions, avroOptionsObjectType), | ||
Literal(parseMode, parseModeObjectType), | ||
Literal(expectedSchema, schemaObjectType)), | ||
Seq(avroOptionsObjectType, parseModeObjectType, schemaObjectType) | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.