Fixed current_user after CUBRID reinstall

This commit is contained in:
Lukas Eder 2012-12-14 15:27:21 +01:00
parent a4a8586e06
commit 1cfbcc6093

View File

@ -972,7 +972,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, I, IPK, T725,
Field<?> user = trim(lower(currentUser()));
Record record = create().select(user).fetchOne();
assertTrue(Arrays.asList("test", "lukas", "sa", "root@localhost", "postgres", "dbo", "dba", "dba@lukas-hp")
assertTrue(Arrays.asList("test", "lukas", "sa", "root@localhost", "postgres", "dbo", "dba", "dba@lukas-hp", "dba@lukas-omni27")
.contains(record.getValue(user)));
}