diff --git a/contrib/storage-splunk/pom.xml b/contrib/storage-splunk/pom.xml index 78cc8b2ce85..165828aba06 100644 --- a/contrib/storage-splunk/pom.xml +++ b/contrib/storage-splunk/pom.xml @@ -61,7 +61,7 @@ com.github.ben-manes.caffeine caffeine - 2.9.3 + ${caffeine.version} diff --git a/contrib/storage-splunk/src/main/java/org/apache/drill/exec/store/splunk/SplunkSchema.java b/contrib/storage-splunk/src/main/java/org/apache/drill/exec/store/splunk/SplunkSchema.java index 9db846a5cf7..dea9992916a 100644 --- a/contrib/storage-splunk/src/main/java/org/apache/drill/exec/store/splunk/SplunkSchema.java +++ b/contrib/storage-splunk/src/main/java/org/apache/drill/exec/store/splunk/SplunkSchema.java @@ -58,7 +58,7 @@ public SplunkSchema(SplunkStoragePlugin plugin, String queryUserName) { this.useCache = plugin.getConfig().getCacheExpiration() >= 0; if (useCache) { - logger.debug("Using splunk schema cache for {}", plugin.getName()); + logger.info("Using splunk schema cache for {}", plugin.getName()); this.cache = Caffeine.newBuilder() .expireAfterAccess(plugin.getConfig().getCacheExpiration(), TimeUnit.MINUTES) .maximumSize(plugin.getConfig().getMaxCacheSize()) @@ -101,8 +101,9 @@ private DynamicDrillTable registerTable(String name, DynamicDrillTable table) { } @Override - public CreateTableEntry createNewTable(String tableName, List partitionColumns, - StorageStrategy strategy) { + public CreateTableEntry createNewTable(String tableName, + List partitionColumns, + StorageStrategy strategy) { if (plugin.getConfig().isWritable() == null || (! plugin.getConfig().isWritable())) { throw UserException .dataWriteError() diff --git a/metastore/iceberg-metastore/pom.xml b/metastore/iceberg-metastore/pom.xml index 15a337121f9..fe28d07bec5 100644 --- a/metastore/iceberg-metastore/pom.xml +++ b/metastore/iceberg-metastore/pom.xml @@ -30,10 +30,6 @@ drill-iceberg-metastore Drill : Metastore : Iceberg - - 2.7.0 - - org.apache.drill diff --git a/pom.xml b/pom.xml index 460376d6536..48c9a13eadf 100644 --- a/pom.xml +++ b/pom.xml @@ -55,6 +55,7 @@ 1.23.0 1.11.4 1.78.1 + 2.9.3 org.apache.calcite 1.34.0 2.6