use of com.alibaba.druid.wall.spi.PGWallProvider in project druid by alibaba.
the class WallStatTest_select_into method testPG.
public void testPG() throws Exception {
WallProvider provider = new PGWallProvider();
Assert.assertTrue(provider.checkValid(sql));
WallTableStat tableStat = provider.getTableStat("t");
Assert.assertEquals(1, tableStat.getSelectCount());
}
Aggregations