diff --git a/tests/queries/0_stateless/02117_show_create_table_system.reference b/tests/queries/0_stateless/02117_show_create_table_system.reference index b260e2dce6c..cf98d6a117c 100644 --- a/tests/queries/0_stateless/02117_show_create_table_system.reference +++ b/tests/queries/0_stateless/02117_show_create_table_system.reference @@ -1145,7 +1145,7 @@ CREATE TABLE system.users `name` String, `id` UUID, `storage` String, - `auth_type` Array(Enum8('no_password' = 0, 'plaintext_password' = 1, 'sha256_password' = 2, 'double_sha1_password' = 3, 'ldap' = 4, 'kerberos' = 5, 'ssl_certificate' = 6, 'bcrypt_password' = 7, 'ssh_key' = 8, 'http' = 9, 'jwt' = 10)), + `auth_type` Array(Enum8('no_password' = 0, 'plaintext_password' = 1, 'sha256_password' = 2, 'double_sha1_password' = 3, 'one_time_password' = 4, 'ldap' = 5, 'kerberos' = 6, 'ssl_certificate' = 7, 'bcrypt_password' = 8, 'ssh_key' = 9, 'http' = 10, 'jwt' = 11)), `auth_params` Array(String), `host_ip` Array(String), `host_names` Array(String), diff --git a/tests/queries/0_stateless/02550_client_connections_credentials.reference b/tests/queries/0_stateless/02550_client_connections_credentials.reference index 1a0988002b1..b925adbed45 100644 --- a/tests/queries/0_stateless/02550_client_connections_credentials.reference +++ b/tests/queries/0_stateless/02550_client_connections_credentials.reference @@ -16,12 +16,12 @@ user MySQL: Authentication failed default password -default: Authentication failed: password is incorrect, or there is no user with such name. +default: Authentication failed: password is incorrect, or there is no user with such name default history_file Cannot create file: /no/such/dir/.history root overrides -foo: Authentication failed: password is incorrect, or there is no user with such name. +foo: Authentication failed: password is incorrect, or there is no user with such name default default -foo: Authentication failed: password is incorrect, or there is no user with such name. +foo: Authentication failed: password is incorrect, or there is no user with such name diff --git a/tests/queries/0_stateless/02550_client_connections_credentials.sh b/tests/queries/0_stateless/02550_client_connections_credentials.sh index a88f3fc7880..70e4467250b 100755 --- a/tests/queries/0_stateless/02550_client_connections_credentials.sh +++ b/tests/queries/0_stateless/02550_client_connections_credentials.sh @@ -117,7 +117,7 @@ echo 'user' $CLICKHOUSE_CLIENT --config $CONFIG --connection test_user -q 'select currentUser()' |& grep -F -o 'MySQL: Authentication failed' $CLICKHOUSE_CLIENT --config $CONFIG --connection test_user --user default -q 'select currentUser()' echo 'password' -$CLICKHOUSE_CLIENT --config $CONFIG --connection test_password -q 'select currentUser()' |& grep -F -o 'default: Authentication failed: password is incorrect, or there is no user with such name.' +$CLICKHOUSE_CLIENT --config $CONFIG --connection test_password -q 'select currentUser()' |& grep -F -o 'default: Authentication failed: password is incorrect, or there is no user with such name' $CLICKHOUSE_CLIENT --config $CONFIG --connection test_password --password "" -q 'select currentUser()' echo 'history_file' $CLICKHOUSE_CLIENT --progress off --interactive --config $CONFIG --connection test_history_file -q 'select 1'