提交 2c9d1479 authored 作者: junjun's avatar junjun

Merge remote-tracking branch 'origin/dev' into dev

...@@ -68,7 +68,7 @@ public class DePermissionAnnotationHandler { ...@@ -68,7 +68,7 @@ public class DePermissionAnnotationHandler {
return point.proceed(point.getArgs()); return point.proceed(point.getArgs());
} catch (Throwable throwable) { } catch (Throwable throwable) {
LogUtil.error(throwable.getMessage(), throwable); LogUtil.error(throwable.getMessage(), throwable);
throw new RuntimeException(throwable); throw new RuntimeException(throwable.getMessage());
} }
} }
......
...@@ -658,6 +658,8 @@ public class JdbcProvider extends DatasourceProvider { ...@@ -658,6 +658,8 @@ public class JdbcProvider extends DatasourceProvider {
case mariadb: case mariadb:
case de_doris: case de_doris:
case ds_doris: case ds_doris:
JdbcConfiguration jdbcConfiguration = new Gson().fromJson(datasourceRequest.getDatasource().getConfiguration(), JdbcConfiguration.class);
return String.format("SELECT TABLE_NAME,'' FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '%s' ;", jdbcConfiguration.getDataBase());
case ck: case ck:
return null; return null;
case sqlServer: case sqlServer:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论