mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 11:32:57 +08:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
2c9d1479c7
@ -68,7 +68,7 @@ public class DePermissionAnnotationHandler {
|
||||
return point.proceed(point.getArgs());
|
||||
} catch (Throwable throwable) {
|
||||
LogUtil.error(throwable.getMessage(), throwable);
|
||||
throw new RuntimeException(throwable);
|
||||
throw new RuntimeException(throwable.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -658,6 +658,8 @@ public class JdbcProvider extends DatasourceProvider {
|
||||
case mariadb:
|
||||
case de_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:
|
||||
return null;
|
||||
case sqlServer:
|
||||
|
Loading…
Reference in New Issue
Block a user