Open purewell opened 2 months ago
To access AWS Redshift spectrum schema, override RedshiftClient.getTableTypes method.
RedshiftClient.java
@Override protected Optional<List<String>> getTableTypes() { return Optional.of(ImmutableList.of("TABLE", "VIEW", "EXTERNAL TABLE")); }
What is the use case for implementing this request?
To join tables in redshift.spectrum schema that cannot be provided by other metastores and hive tables.
To access AWS Redshift spectrum schema, override RedshiftClient.getTableTypes method.
RedshiftClient.java