mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
修复Oracle下特殊表名导致meta信息获取不到问题
This commit is contained in:
@@ -32,8 +32,8 @@ public class MetaUtilTest {
|
||||
final DataSource ds = DSUtil.getDS("test");
|
||||
|
||||
@Test
|
||||
public void getTablesTest() {
|
||||
final List<String> tables = MetaUtil.getTables(ds);
|
||||
public void getTableNamesTest() {
|
||||
final List<String> tables = MetaUtil.getTableNames(ds);
|
||||
Assertions.assertTrue(tables.contains("user"));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user