github.com/matrixorigin/matrixone@v0.7.0/test/distributed/cases/tenant/alter_account.result (about)

     1  drop account if exists acc1;
     2  drop account if exists accx;
     3  alter account if exists nosys admin_name 'root' identified by '1234';
     4  alter account nosys admin_name 'root' identified by '1234';
     5  internal error: there is no account nosys
     6  create account acc1 admin_name "root1" identified by "111";
     7  alter account acc1 admin_name "rootx" identified by "111";
     8  internal error: there is no user rootx
     9  alter account if exists acc1 admin_name "rootx" identified by "111";
    10  internal error: there is no user rootx
    11  alter account acc1 admin_name "root1" identified by "1234";
    12  alter account if exists acc1 admin_name "root1" identified by "1234";
    13  alter account if exists acc1 admin_name "root1" IDENTIFIED BY RANDOM PASSWORD;
    14  internal error: only support identified by password
    15  alter account if exists acc1 admin_name "root1" IDENTIFIED WITH 'abc';
    16  internal error: only support identified by password
    17  alter account if exists acc1 admin_name "root1" identified by "1234" suspend;
    18  internal error: at most one option at a time
    19  alter account if exists acc1 suspend comment "acc1";
    20  internal error: at most one option at a time
    21  alter account if exists acc1 admin_name "root1" identified by "1234" comment "acc1";
    22  internal error: at most one option at a time
    23  alter account if exists acc1;
    24  internal error: at least one option at a time
    25  alter account acc1 comment "new accout";
    26  alter account if exists accx comment "new accout";
    27  create account accx admin_name "root1" identified by "111";
    28  alter account accx comment "new accout";
    29  alter account accx suspend;
    30  alter account accx open;
    31  drop account if exists acc1;
    32  drop account if exists accx;