Java Code Examples for org.apache.calcite.sql.SqlAccessType#ALL

The following examples show how to use org.apache.calcite.sql.SqlAccessType#ALL . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RelOptTableImpl.java    From Bats with Apache License 2.0 4 votes vote down vote up
@Override
public SqlAccessType getAllowedAccess() {
    return SqlAccessType.ALL;
}
 
Example 2
Source File: DremioPrepareTable.java    From dremio-oss with Apache License 2.0 4 votes vote down vote up
@Override
public SqlAccessType getAllowedAccess() {
  return SqlAccessType.ALL;
}
 
Example 3
Source File: TestSQLAnalyzer.java    From dremio-oss with Apache License 2.0 4 votes vote down vote up
@Override
public SqlAccessType getAllowedAccess() {
  return SqlAccessType.ALL;
}
 
Example 4
Source File: RelOptTableImpl.java    From calcite with Apache License 2.0 4 votes vote down vote up
public SqlAccessType getAllowedAccess() {
  return SqlAccessType.ALL;
}
 
Example 5
Source File: MockCatalogReader.java    From calcite with Apache License 2.0 4 votes vote down vote up
public SqlAccessType getAllowedAccess() {
  return SqlAccessType.ALL;
}
 
Example 6
Source File: FlinkPreparingTableBase.java    From flink with Apache License 2.0 2 votes vote down vote up
/**
 * Obtains the access type of the table.
 *
 * @return all access types including SELECT/UPDATE/INSERT/DELETE
 */
public SqlAccessType getAllowedAccess() {
	return SqlAccessType.ALL;
}