org.apache.kyuubi.jdbc.hive.adapter.SQLDatabaseMetaData Maven / Gradle / Ivy
The newest version!
/*
* 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.kyuubi.jdbc.hive.adapter;
import java.sql.*;
public interface SQLDatabaseMetaData extends DatabaseMetaData {
@Override
default boolean allProceduresAreCallable() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default String getURL() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default String getUserName() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean isReadOnly() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean nullsAreSortedHigh() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean nullsAreSortedLow() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean nullsAreSortedAtStart() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean nullsAreSortedAtEnd() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean usesLocalFiles() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean usesLocalFilePerTable() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsMixedCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean storesUpperCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean storesLowerCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean storesMixedCaseIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsMixedCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean storesUpperCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean storesLowerCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean storesMixedCaseQuotedIdentifiers() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean nullPlusNonNullIsNull() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsConvert() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsConvert(int fromType, int toType) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsTableCorrelationNames() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsDifferentTableCorrelationNames() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsExpressionsInOrderBy() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsOrderByUnrelated() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsGroupByUnrelated() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsGroupByBeyondSelect() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsLikeEscapeClause() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsMultipleTransactions() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsMinimumSQLGrammar() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsCoreSQLGrammar() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsExtendedSQLGrammar() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsANSI92EntryLevelSQL() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsANSI92IntermediateSQL() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsANSI92FullSQL() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsIntegrityEnhancementFacility() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean isCatalogAtStart() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsSubqueriesInComparisons() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsSubqueriesInExists() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsSubqueriesInIns() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsSubqueriesInQuantifieds() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsCorrelatedSubqueries() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsOpenCursorsAcrossCommit() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsOpenCursorsAcrossRollback() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsOpenStatementsAcrossCommit() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsOpenStatementsAcrossRollback() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxBinaryLiteralLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxCharLiteralLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxColumnsInGroupBy() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxColumnsInIndex() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxColumnsInOrderBy() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxColumnsInSelect() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxColumnsInTable() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxConnections() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxCursorNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxIndexLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxSchemaNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxProcedureNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxCatalogNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxRowSize() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean doesMaxRowSizeIncludeBlobs() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxStatementLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxStatements() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxTableNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxTablesInSelect() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getMaxUserNameLength() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsTransactionIsolationLevel(int level) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsDataDefinitionAndDataManipulationTransactions() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsDataManipulationTransactionsOnly() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean dataDefinitionCausesTransactionCommit() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean dataDefinitionIgnoredInTransactions() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getColumnPrivileges(
String catalog, String schema, String table, String columnNamePattern) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getTablePrivileges(
String catalog, String schemaPattern, String tableNamePattern) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getBestRowIdentifier(
String catalog, String schema, String table, int scope, boolean nullable)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getVersionColumns(String catalog, String schema, String table)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getExportedKeys(String catalog, String schema, String table)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsResultSetConcurrency(int type, int concurrency) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean ownUpdatesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean ownDeletesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean ownInsertsAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean othersUpdatesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean othersDeletesAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean othersInsertsAreVisible(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean updatesAreDetected(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean deletesAreDetected(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean insertsAreDetected(int type) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsNamedParameters() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsMultipleOpenResults() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsGetGeneratedKeys() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getSuperTypes(String catalog, String schemaPattern, String typeNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getSuperTables(String catalog, String schemaPattern, String tableNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getAttributes(
String catalog, String schemaPattern, String typeNamePattern, String attributeNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default int getResultSetHoldability() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean locatorsUpdateCopy() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsStatementPooling() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default RowIdLifetime getRowIdLifetime() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean autoCommitFailureClosesAllResultSets() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getFunctionColumns(
String catalog, String schemaPattern, String functionNamePattern, String columnNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default ResultSet getPseudoColumns(
String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern)
throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean generatedKeyAlwaysReturned() throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default T unwrap(Class iface) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
@Override
default boolean isWrapperFor(Class> iface) throws SQLException {
throw new SQLFeatureNotSupportedException("Method not supported");
}
}