cloud-fan commented on code in PR #52334: URL: https://github.com/apache/spark/pull/52334#discussion_r2416821047
########## sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/util/LiteralToSqlConverter.scala: ########## @@ -0,0 +1,211 @@ +/* + * 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.catalyst.util + +import org.apache.spark.SparkException +import org.apache.spark.sql.catalyst.{InternalRow} +import org.apache.spark.sql.catalyst.analysis.UnresolvedFunction +import org.apache.spark.sql.catalyst.expressions._ +import org.apache.spark.sql.catalyst.util.{ArrayBasedMapData, GenericArrayData} +import org.apache.spark.sql.errors.QueryCompilationErrors +import org.apache.spark.sql.types._ + +/** + * Utility for converting Catalyst literal expressions to their SQL string representation. + * + * This object provides a specialized implementation for converting Spark SQL literal + * expressions to their equivalent SQL text representation. It is used by the parameter + * substitution system for EXECUTE IMMEDIATE and other parameterized queries. + * + * Key features: + * - Handles all Spark SQL data types for literal values + * - Supports both Scala collections and Spark internal data structures + * - Proper SQL escaping and formatting + * - Optimized for literal expressions only + * + * Supported data types: + * - Primitives: String, Integer, Long, Float, Double, Boolean, Decimal + * - Temporal: Date, Timestamp, TimestampNTZ, Interval + * - Collections: Array, Map (including nested structures) + * - Special: Null values, Binary data + * - Complex: Nested arrays, maps of arrays, arrays of maps + * + * @example Basic usage: + * {{{ + * val result1 = LiteralToSqlConverter.convert(Literal(42)) + * // result1: "42" + * + * val result2 = LiteralToSqlConverter.convert(Literal("hello")) + * // result2: "'hello'" + * + * val arrayLit = Literal.create(Array(1, 2, 3), ArrayType(IntegerType)) + * val result3 = LiteralToSqlConverter.convert(arrayLit) + * // result3: "ARRAY(1, 2, 3)" + * }}} + * + * @example Complex types: + * {{{ + * val mapLit = Literal.create(Map("key" -> "value"), MapType(StringType, StringType)) + * val result = LiteralToSqlConverter.convert(mapLit) + * // result: "MAP('key', 'value')" + * }}} + * + * @note This utility is thread-safe and can be used concurrently. + * @note Only supports Literal expressions - all parameter values must be pre-evaluated. + * @see [[ParameterHandler]] for the main parameter handling entry point + * @since 4.0.0 Review Comment: version doc is not needed as this is an internal API. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
