mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-02-25 16:22:01 +01:00
Merge branch '5.5.0' of https://github.com/AuthMe/AuthMeReloaded
This commit is contained in:
commit
80647c04f4
@ -78,7 +78,7 @@ public final class AuthMeColumnsHandler {
|
|||||||
*/
|
*/
|
||||||
public <T> boolean update(String name, DataSourceColumn<T> column, T value) {
|
public <T> boolean update(String name, DataSourceColumn<T> column, T value) {
|
||||||
try {
|
try {
|
||||||
return internalHandler.update(name, column, value);
|
return internalHandler.update(name.toLowerCase(), column, value);
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
logSqlException(e);
|
logSqlException(e);
|
||||||
return false;
|
return false;
|
||||||
|
@ -452,7 +452,7 @@ public abstract class AbstractDataSourceIntegrationTest {
|
|||||||
DataSource dataSource = getDataSource();
|
DataSource dataSource = getDataSource();
|
||||||
|
|
||||||
// when
|
// when
|
||||||
dataSource.grantSession("bobby");
|
dataSource.grantSession("Bobby");
|
||||||
dataSource.grantSession("doesNotExist");
|
dataSource.grantSession("doesNotExist");
|
||||||
|
|
||||||
// then
|
// then
|
||||||
|
Loading…
Reference in New Issue
Block a user