kylinmac commented on PR #47708:
URL: https://github.com/apache/doris/pull/47708#issuecomment-2812194695

   test case
   ```
   create user 'test'@'%' IDENTIFIED BY '123456' ;
   create database test;
   CREATE TABLE test.test_table(
       user_id            BIGINT       NOT NULL COMMENT "user id",
       name               VARCHAR(20)           COMMENT "name",
       age                INT                   COMMENT "age"
   )
   DUPLICATE KEY(user_id)
   DISTRIBUTED BY HASH(user_id) BUCKETS 10;
   
   grant select_priv,load_priv on test.* to test;
   
   ```
   use test login
   
   ```
   INSERT INTO test.test_table with label test_show_transaction  (user_id, 
name, age)
   VALUES (1, "Emily", 25),
          (2, "Benjamin", 35),
          (3, "Olivia", 28),
          (4, "Alexander", 60),
          (5, "Ava", 17);
   
   show transaction where label='test_show_transaction';
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to