Package org.apache.spark.sql.jdbc
Class MsSqlServerDialect
Object
org.apache.spark.sql.jdbc.JdbcDialect
org.apache.spark.sql.jdbc.MsSqlServerDialect
- All Implemented Interfaces:
- Serializable,- org.apache.spark.internal.Logging,- NoLegacyJDBCError,- scala.Equals,- scala.Product
public class MsSqlServerDialect
extends JdbcDialect
implements NoLegacyJDBCError, scala.Product, Serializable
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionclassclassNested classes/interfaces inherited from interface org.apache.spark.internal.Loggingorg.apache.spark.internal.Logging.LogStringContext, org.apache.spark.internal.Logging.SparkShellLoggingFilter
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanCheck if this dialect instance can handle a certain jdbc url.classifyException(Throwable e, String condition, scala.collection.immutable.Map<String, String> messageParameters, String description, boolean isRuntime) Gets a dialect exception, classifies it and wraps it byAnalysisException.scala.Option<String>compileExpression(Expression expr) Converts V2 expression to String representing a SQL expression.compileValue(Object value) Converts value to SQL expression.static final intstatic final intGEOMETRY()getAddColumnQuery(String tableName, String columnName, String dataType) scala.Option<DataType>getCatalystType(int sqlType, String typeName, int size, MetadataBuilder md) Get the custom datatype mapping for the given jdbc meta information.getJdbcSQLQueryBuilder(org.apache.spark.sql.execution.datasources.jdbc.JDBCOptions options) Returns the SQL builder for the SELECT statement.scala.Option<JdbcType>getJDBCType(DataType dt) Retrieve the jdbc / sql type for a given datatype.getLimitClause(Integer limit) Returns the LIMIT clause for the SELECT statementgetRenameColumnQuery(String tableName, String columnName, String newName, int dbMajorVersion) getTableCommentQuery(String table, String comment) getUpdateColumnNullabilityQuery(String tableName, String columnName, boolean isNullable) scala.Option<Object>Return Some[true] iffTRUNCATE TABLEcauses cascading default.booleanbooleanisSupportedFunction(String funcName) Returns whether the database supports function.booleanisSyntaxErrorBestEffort(SQLException exception) Attempts to determine if the given SQLException is a SQL syntax error.renameTable(Identifier oldTable, Identifier newTable) Rename an existing table.booleanReturns true if dialect supports JOIN operator.booleanReturns ture if dialect supports LIMIT clause.Methods inherited from class org.apache.spark.sql.jdbc.JdbcDialectalterTable, beforeFetch, classifyException, compileAggregate, convertJavaDateToDate, convertJavaTimestampToTimestamp, convertJavaTimestampToTimestampNTZ, convertTimestampNTZToJavaTimestamp, createConnectionFactory, createIndex, createSchema, createTable, dropIndex, dropSchema, dropTable, functions, getDayTimeIntervalAsMicros, getDeleteColumnQuery, getFullyQualifiedQuotedTableName, getOffsetClause, getSchemaCommentQuery, getSchemaQuery, getTableExistsQuery, getTableSample, getTruncateQuery, getTruncateQuery, getUpdateColumnTypeQuery, getYearMonthIntervalAsMonths, indexExists, insertIntoTable, listIndexes, listSchemas, quoteIdentifier, removeSchemaCommentQuery, renameTable, schemasExists, supportsHint, supportsOffset, supportsTableSample, updateExtraColumnMetaMethods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface scala.EqualscanEqual, equalsMethods inherited from interface org.apache.spark.internal.LogginginitializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, isTraceEnabled, log, logBasedOnLevel, logDebug, logDebug, logDebug, logDebug, logError, logError, logError, logError, logInfo, logInfo, logInfo, logInfo, logName, LogStringContext, logTrace, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, logWarning, MDC, org$apache$spark$internal$Logging$$log_, org$apache$spark$internal$Logging$$log__$eq, withLogContextMethods inherited from interface scala.ProductproductArity, productElement, productElementName, productElementNames, productIterator, productPrefix
- 
Constructor Details- 
MsSqlServerDialectpublic MsSqlServerDialect()
 
- 
- 
Method Details- 
GEOMETRYpublic static final int GEOMETRY()
- 
GEOGRAPHYpublic static final int GEOGRAPHY()
- 
canHandleDescription copied from class:JdbcDialectCheck if this dialect instance can handle a certain jdbc url.- Specified by:
- canHandlein class- JdbcDialect
- Parameters:
- url- the jdbc url.
- Returns:
- True if the dialect can be applied on the given jdbc url.
 
- 
isObjectNotFoundException- Overrides:
- isObjectNotFoundExceptionin class- JdbcDialect
 
- 
compileValueDescription copied from class:JdbcDialectConverts value to SQL expression.- Overrides:
- compileValuein class- JdbcDialect
- Parameters:
- value- The value to be converted.
- Returns:
- Converted value.
 
- 
isSupportedFunctionDescription copied from class:JdbcDialectReturns whether the database supports function.- Overrides:
- isSupportedFunctionin class- JdbcDialect
- Parameters:
- funcName- Upper-cased function name
- Returns:
- True if the database supports function.
 
- 
compileExpressionDescription copied from class:JdbcDialectConverts V2 expression to String representing a SQL expression.- Overrides:
- compileExpressionin class- JdbcDialect
- Parameters:
- expr- The V2 expression to be converted.
- Returns:
- Converted value.
 
- 
getCatalystTypepublic scala.Option<DataType> getCatalystType(int sqlType, String typeName, int size, MetadataBuilder md) Description copied from class:JdbcDialectGet the custom datatype mapping for the given jdbc meta information.Guidelines for mapping database defined timestamps to Spark SQL timestamps: - 
     TIMESTAMP WITHOUT TIME ZONE if preferTimestampNTZ ->
     TimestampNTZType
- 
     TIMESTAMP WITHOUT TIME ZONE if !preferTimestampNTZ ->
     TimestampType(LTZ)
- TIMESTAMP WITH TIME ZONE -> TimestampType(LTZ)
- TIMESTAMP WITH LOCAL TIME ZONE -> TimestampType(LTZ)
- 
     If the TIMESTAMP cannot be distinguished by sqlTypeandtypeName, preferTimestampNTZ is respected for now, but we may need to add another option in the future if necessary.
 - Overrides:
- getCatalystTypein class- JdbcDialect
- Parameters:
- sqlType- Refers to- Typesconstants, or other constants defined by the target database, e.g.- -101is Oracle's TIMESTAMP WITH TIME ZONE type. This value is returned by- ResultSetMetaData.getColumnType(int).
- typeName- The column type name used by the database (e.g. "BIGINT UNSIGNED"). This is sometimes used to determine the target data type when- sqlTypeis not sufficient if multiple database types are conflated into a single id. This value is returned by- ResultSetMetaData.getColumnTypeName(int).
- size- The size of the type, e.g. the maximum precision for numeric types, length for character string, etc. This value is returned by- ResultSetMetaData.getPrecision(int).
- md- Result metadata associated with this type. This contains additional information from- ResultSetMetaDataor user specified options.- 
               isTimestampNTZ: Whether read a TIMESTAMP WITHOUT TIME ZONE value asTimestampNTZTypeor not. This is configured byJDBCOptions.preferTimestampNTZ.
- 
               scale: The length of fractional partResultSetMetaData.getScale(int)
 
- 
               
- Returns:
- An option the actual DataType (subclasses of DataType) or None if the default type mapping should be used.
 
- 
     TIMESTAMP WITHOUT TIME ZONE if preferTimestampNTZ ->
     
- 
getJDBCTypeDescription copied from class:JdbcDialectRetrieve the jdbc / sql type for a given datatype.- Overrides:
- getJDBCTypein class- JdbcDialect
- Parameters:
- dt- The datatype (e.g.- StringType)
- Returns:
- The new JdbcType if there is an override for this DataType
 
- 
isCascadingTruncateTableDescription copied from class:JdbcDialectReturn Some[true] iffTRUNCATE TABLEcauses cascading default. Some[true] : TRUNCATE TABLE causes cascading. Some[false] : TRUNCATE TABLE does not cause cascading. None: The behavior of TRUNCATE TABLE is unknown (default).- Overrides:
- isCascadingTruncateTablein class- JdbcDialect
- Returns:
- (undocumented)
 
- 
renameTableDescription copied from class:JdbcDialectRename an existing table.- Overrides:
- renameTablein class- JdbcDialect
- Parameters:
- oldTable- The existing table.
- newTable- New name of the table.
- Returns:
- The SQL statement to use for renaming the table.
 
- 
getAddColumnQuery- Overrides:
- getAddColumnQueryin class- JdbcDialect
 
- 
getRenameColumnQuerypublic String getRenameColumnQuery(String tableName, String columnName, String newName, int dbMajorVersion) - Overrides:
- getRenameColumnQueryin class- JdbcDialect
 
- 
getUpdateColumnNullabilityQuerypublic String getUpdateColumnNullabilityQuery(String tableName, String columnName, boolean isNullable) - Overrides:
- getUpdateColumnNullabilityQueryin class- JdbcDialect
 
- 
getTableCommentQuery- Overrides:
- getTableCommentQueryin class- JdbcDialect
 
- 
getLimitClauseDescription copied from class:JdbcDialectReturns the LIMIT clause for the SELECT statement- Overrides:
- getLimitClausein class- JdbcDialect
- Parameters:
- limit- (undocumented)
- Returns:
- (undocumented)
 
- 
classifyExceptionpublic Throwable classifyException(Throwable e, String condition, scala.collection.immutable.Map<String, String> messageParameters, String description, boolean isRuntime) Description copied from class:JdbcDialectGets a dialect exception, classifies it and wraps it byAnalysisException.- Specified by:
- classifyExceptionin interface- NoLegacyJDBCError
- Overrides:
- classifyExceptionin class- JdbcDialect
- Parameters:
- e- The dialect specific exception.
- condition- The error condition assigned in the case of an unclassified- e
- messageParameters- The message parameters of- errorClass
- description- The error description
- isRuntime- Whether the exception is a runtime exception or not.
- Returns:
- SparkThrowable + Throwableor its sub-class.
 
- 
getJdbcSQLQueryBuilderpublic JdbcSQLQueryBuilder getJdbcSQLQueryBuilder(org.apache.spark.sql.execution.datasources.jdbc.JDBCOptions options) Description copied from class:JdbcDialectReturns the SQL builder for the SELECT statement.- Overrides:
- getJdbcSQLQueryBuilderin class- JdbcDialect
- Parameters:
- options- (undocumented)
- Returns:
- (undocumented)
 
- 
isSyntaxErrorBestEffortDescription copied from class:JdbcDialectAttempts to determine if the given SQLException is a SQL syntax error.This check is best-effort: it may not detect all syntax errors across all JDBC dialects. However, if this method returns true, the exception is guaranteed to be a syntax error. This is used to decide whether to wrap the exception in a more appropriate Spark exception. - Overrides:
- isSyntaxErrorBestEffortin class- JdbcDialect
- Parameters:
- exception- (undocumented)
- Returns:
- true if the exception is confidently identified as a syntax error; false otherwise.
 
- 
supportsLimitpublic boolean supportsLimit()Description copied from class:JdbcDialectReturns ture if dialect supports LIMIT clause.Note: Some build-in dialect supports LIMIT clause with some trick, please see: OracleDialect.OracleSQLQueryBuilderandMsSqlServerDialect.MsSqlServerSQLQueryBuilder.- Overrides:
- supportsLimitin class- JdbcDialect
- Returns:
- (undocumented)
 
- 
supportsJoinpublic boolean supportsJoin()Description copied from class:JdbcDialectReturns true if dialect supports JOIN operator.- Overrides:
- supportsJoinin class- JdbcDialect
- Returns:
- (undocumented)
 
 
-