simplify tests

This commit is contained in:
Yarik Briukhovetskyi 2024-03-22 18:23:20 +01:00 committed by GitHub
parent de55ec24cc
commit 510a3044c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 10 deletions

View File

@ -1,8 +1,4 @@
1
1
1 1
1
1
1
1 1 1
1

View File

@ -1,10 +1,5 @@
-- since actual user name is unknown, have to perform just smoke tests
select currentUser() IS NOT NULL;
select length(currentUser()) > 0;
select currentUser() = user(), currentUser() = USER();
select currentUser() = user(), currentUser() = USER(), current_user() = currentUser();
select currentUser() = initial_user from system.processes where query like '%$!@#%';
select current_user() IS NOT NULL;
select length(current_user()) > 0;
select current_user() = user(), current_user() = USER(), current_user() = currentUser();
select current_user() = initial_user from system.processes where query like '%$!@#%';