From d4da0a0a21e6ead8591848d08b3680b74cdd4629 Mon Sep 17 00:00:00 2001 From: Arthur Passos Date: Mon, 24 Jun 2024 16:30:08 -0300 Subject: [PATCH] use plaintext_password instead of sha256 because of cicd --- tests/queries/0_stateless/03174_add_identified_with.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/queries/0_stateless/03174_add_identified_with.sh b/tests/queries/0_stateless/03174_add_identified_with.sh index f259f236c96..902002e11e5 100755 --- a/tests/queries/0_stateless/03174_add_identified_with.sh +++ b/tests/queries/0_stateless/03174_add_identified_with.sh @@ -31,7 +31,7 @@ test_login_pwd_expect_error ${user} '1' echo "New password should work" test_login_pwd ${user} '2' -${CLICKHOUSE_CLIENT} --query "ALTER USER ${user} ADD IDENTIFIED WITH sha256_password BY '3' ADD IDENTIFIED WITH plaintext_password BY '4'" +${CLICKHOUSE_CLIENT} --query "ALTER USER ${user} ADD IDENTIFIED WITH plaintext_password BY '3' ADD IDENTIFIED WITH plaintext_password BY '4'" echo "Two new passwords were added, should both work" test_login_pwd ${user} '3'