We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca6211d commit 9c3a0bbCopy full SHA for 9c3a0bb
src/test/org/firebirdsql/jdbc/FBPreparedStatementTest.java
@@ -1563,7 +1563,8 @@ void executeQueryWithExceptionShouldEndTransactionInAutocommit() throws Exceptio
1563
@Test
1564
void prepareStatementWithInfoExceeding32K() throws Exception {
1565
final String owner = "U234567890123456789012345678901";
1566
- databaseUsers.createUser(owner, owner);
+ databaseUsers.createUser(owner, owner,
1567
+ getDefaultSupportInfo().supportsAuthenticationPlugin("Srp") ? "Srp" : null);
1568
if (getDefaultSupportInfo().isVersionEqualOrAbove(3, 0)) {
1569
try (Statement stmt = con.createStatement()) {
1570
stmt.execute("grant create table to user " + owner);
0 commit comments