YUTING0907 opened a new issue, #9548:
URL: https://github.com/apache/incubator-doris/issues/9548

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and 
found no similar issues.
   
   
   ### Version
   
   PALO-0.15.3
   
   ### What's Wrong?
   
   ### occurrence an error when submit insert select SQL.
   ### if the select part was only executed, no error happened.
   ### However, when the whole insert select SQL was executed, an error occured.
   ### The above scenario can be reproduced even if there is no data in the 
test table.
   
   
   **1. insert select SQL**
   
   `
   insert into dim.dim_esc_t_isc_buyer_detail
   (
   `ebay_name`
   ,`contact_name`
   )
   select
           d.ebay_name ebay_name,                    -- 18.eBay ID
                a.contact_name
   from  test.test_esc_system_usr_company  a   -- 用户公司表
   left join (
   select 
t.client_actor_id,t.service_actor_id,t.service_application,t.ebay_name,t.num,t.refresh_token_expiration,t.current_token
   from
       (select 
t1.client_actor_id,t1.service_actor_id,t1.service_application,t2.ebay_name,t1.refresh_token_expiration,t1.current_token
       ,row_number() OVER (PARTITION BY 
t1.client_actor_id,t1.service_actor_id,t1.service_application,t2.ebay_name 
ORDER BY t1.refresh_token_expiration desc) AS num
        from test.test_esc_system_plt_access_token t1
        left join test.test_esc_system_plt_ebay_user t2
        on t1.id = t2.token_id
       ) t
    where t.num = 1
   ) d
     on a.id=d.client_actor_id
   ;`
   
   **2.DDL**
   
   `CREATE TABLE test.test_esc_system_usr_company (
     `id` varchar(128) NOT NULL COMMENT "主键",
     `contact_name` varchar(1024) NULL COMMENT "联系人名称"
   ) ENGINE=OLAP
   UNIQUE KEY(`id`)
   COMMENT "用户公司表"
   DISTRIBUTED BY HASH(`id`) BUCKETS 1
   PROPERTIES (
   "replication_allocation" = "tag.location.default: 4",
   "in_memory" = "false",
   "storage_format" = "V2"
   );
   
   CREATE TABLE test.test_esc_system_plt_access_token(
         id varchar(128) NOT NULL COMMENT '唯一ID',
         refresh_token_expiration datetime NOT NULL COMMENT '刷新凭证截止时间',
         client_actor_id varchar(128) DEFAULT NULL COMMENT '客户端所有者编号',
         service_actor_id varchar(128) DEFAULT NULL COMMENT '服务端所有者编号',
         service_application varchar(128) NOT NULL COMMENT '服务端应用',
         current_token tinyint(1) DEFAULT '1' COMMENT '是否当前凭证'
   )
   UNIQUE KEY (id)
   DISTRIBUTED BY HASH(id) BUCKETS 1
   PROPERTIES
   (
   "replication_num" = "3"
   );
   
   CREATE TABLE test.test_esc_system_plt_ebay_user (
     `token_id` varchar(1020) DEFAULT NULL COMMENT 'tokenId',
     `ebay_name` varchar(1020) DEFAULT NULL COMMENT 'ebay用户名'
   )ENGINE=OLAP
   UNIQUE KEY (token_id)
   COMMENT 'ebay授权信息'
   DISTRIBUTED BY HASH(token_id) BUCKETS 1
   PROPERTIES (
   "function_column.sequence_type" = "bigint",
   "replication_num" = "3",
   "in_memory" = "false",
   "storage_format" = "V2"
   );`
   
   **3. error information**
   
    1050 - errCode = 2, detailMessage = Table 'test_esc_system_usr_company' 
already exists, Time: 0.035000s
   
   
   ### What You Expected?
   
   **want the insert select SQL will execute successfully.**
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   PLAN FRAGMENT 0
    OUTPUT EXPRS:NULL | NULL | NULL | NULL | NULL | `t2`.`ebay_name` | NULL | 
NULL | NULL | NULL | `a`.`contact_name` | NULL | NULL | NULL | NULL | NULL | 
NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | 
NULL | 0
     PARTITION: HASH_PARTITIONED: 
`default_cluster:test`.`test_esc_system_usr_company`.`id`
   
     OLAP TABLE SINK
       TUPLE ID: 0
       RANDOM
   
     7:HASH JOIN
     |  join op: LEFT OUTER JOIN (BROADCAST)
     |  hash predicates:
     |  colocate: false, reason: The src data has been redistributed
     |  equal join conjunct: `a`.`id` = <slot 60> <slot 31>
     |  cardinality=0
     |  tuple ids: 1 9N 8N 
     |  
     |----10:EXCHANGE
     |       tuple ids: 9 8 
     |    
     0:OlapScanNode
        TABLE: test_esc_system_usr_company
        PREAGGREGATION: OFF. Reason: No AggregateInfo
        PREDICATES: `a`.`__DORIS_DELETE_SIGN__` = 0
        partitions=0/1
        rollup: null
        tabletRatio=0/0
        tabletList=
        cardinality=0
        avgRowSize=33.0
        numNodes=1
        tuple ids: 1 
   
   PLAN FRAGMENT 1
    OUTPUT EXPRS:
     PARTITION: HASH_PARTITIONED: `t1`.`client_actor_id`, 
`t1`.`service_actor_id`, `t1`.`service_application`, `t2`.`ebay_name`
   
     STREAM DATA SINK
       EXCHANGE ID: 10
       UNPARTITIONED
   
     6:SELECT
     |  predicates: <slot 58> = 1, <slot 58> = 1
     |  tuple ids: 9 8 
     |  
     5:ANALYTIC
     |  functions: [, row_number(), ]
     |  partition by: `t1`.`client_actor_id`, `t1`.`service_actor_id`, 
`t1`.`service_application`, `t2`.`ebay_name`
     |  order by: <slot 63> <slot 35> DESC NULLS LAST
     |  window: ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW
     |  tuple ids: 9 8 
     |  
     4:SORT
     |  order by: <slot 60> <slot 31> ASC, <slot 61> <slot 32> ASC, <slot 62> 
<slot 33> ASC, <slot 66> <slot 34> ASC, <slot 63> <slot 35> DESC
     |  offset: 0
     |  tuple ids: 9 
     |  
     9:EXCHANGE
        tuple ids: 2 3N 
   
   PLAN FRAGMENT 2
    OUTPUT EXPRS:
     PARTITION: HASH_PARTITIONED: 
`default_cluster:test`.`test_esc_system_plt_access_token`.`id`
   
     STREAM DATA SINK
       EXCHANGE ID: 09
       HASH_PARTITIONED: `t1`.`client_actor_id`, `t1`.`service_actor_id`, 
`t1`.`service_application`, `t2`.`ebay_name`
   
     3:HASH JOIN
     |  join op: LEFT OUTER JOIN (BROADCAST)
     |  hash predicates:
     |  colocate: false, reason: Tables are not in the same group
     |  equal join conjunct: `t1`.`id` = `t2`.`token_id`
     |  cardinality=0
     |  tuple ids: 2 3N 
     |  
     |----8:EXCHANGE
     |       tuple ids: 3 
     |    
     1:OlapScanNode
        TABLE: test_esc_system_plt_access_token
        PREAGGREGATION: OFF. Reason: No AggregateInfo
        PREDICATES: `t1`.`__DORIS_DELETE_SIGN__` = 0
        partitions=0/1
        rollup: null
        tabletRatio=0/0
        tabletList=
        cardinality=0
        avgRowSize=81.0
        numNodes=1
        tuple ids: 2 
   
   PLAN FRAGMENT 3
    OUTPUT EXPRS:
     PARTITION: HASH_PARTITIONED: 
`default_cluster:test`.`test_esc_system_plt_ebay_user`.`token_id`
   
     STREAM DATA SINK
       EXCHANGE ID: 08
       UNPARTITIONED
   
     2:OlapScanNode
        TABLE: test_esc_system_plt_ebay_user
        PREAGGREGATION: OFF. Reason: null
        PREDICATES: `t2`.`__DORIS_DELETE_SIGN__` = 0
        partitions=0/1
        rollup: null
        tabletRatio=0/0
        tabletList=
        cardinality=0
        avgRowSize=33.0
        numNodes=1
        tuple ids: 3 
   
   Tuples:
   TupleDescriptor{id=0, tbl=null, byteSize=416, materialized=true}
     SlotDescriptor{id=0, col=code, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=32
       nullIndicatorByte=0
       nullIndicatorBit=4
       slotIdx=5
   
     SlotDescriptor{id=1, col=com_id, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=48
       nullIndicatorByte=0
       nullIndicatorBit=5
       slotIdx=6
   
     SlotDescriptor{id=2, col=name, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=64
       nullIndicatorByte=0
       nullIndicatorBit=6
       slotIdx=7
   
     SlotDescriptor{id=3, col=type, type=TINYINT}
       parent=0
       materialized=true
       byteSize=1
       byteOffset=4
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=4, col=level_name, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=80
       nullIndicatorByte=0
       nullIndicatorBit=7
       slotIdx=8
   
     SlotDescriptor{id=5, col=ebay_name, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=96
       nullIndicatorByte=1
       nullIndicatorBit=0
       slotIdx=9
   
     SlotDescriptor{id=6, col=country_code, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=112
       nullIndicatorByte=1
       nullIndicatorBit=1
       slotIdx=10
   
     SlotDescriptor{id=7, col=province, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=128
       nullIndicatorByte=1
       nullIndicatorBit=2
       slotIdx=11
   
     SlotDescriptor{id=8, col=city, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=144
       nullIndicatorByte=1
       nullIndicatorBit=3
       slotIdx=12
   
     SlotDescriptor{id=9, col=district, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=160
       nullIndicatorByte=1
       nullIndicatorBit=4
       slotIdx=13
   
     SlotDescriptor{id=10, col=contact_name, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=176
       nullIndicatorByte=1
       nullIndicatorBit=5
       slotIdx=14
   
     SlotDescriptor{id=11, col=email, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=192
       nullIndicatorByte=1
       nullIndicatorBit=6
       slotIdx=15
   
     SlotDescriptor{id=12, col=contact_mobile, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=208
       nullIndicatorByte=1
       nullIndicatorBit=7
       slotIdx=16
   
     SlotDescriptor{id=13, col=service_actor_id, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=224
       nullIndicatorByte=2
       nullIndicatorBit=0
       slotIdx=17
   
     SlotDescriptor{id=14, col=service_application, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=240
       nullIndicatorByte=2
       nullIndicatorBit=1
       slotIdx=18
   
     SlotDescriptor{id=15, col=permit_status, type=INT}
       parent=0
       materialized=true
       byteSize=4
       byteOffset=8
       nullIndicatorByte=0
       nullIndicatorBit=1
       slotIdx=2
   
     SlotDescriptor{id=16, col=country_name, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=256
       nullIndicatorByte=2
       nullIndicatorBit=2
       slotIdx=19
   
     SlotDescriptor{id=17, col=refresh_token_expiration, type=DATETIME}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=272
       nullIndicatorByte=2
       nullIndicatorBit=3
       slotIdx=20
   
     SlotDescriptor{id=18, col=access_statues, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=288
       nullIndicatorByte=2
       nullIndicatorBit=4
       slotIdx=21
   
     SlotDescriptor{id=19, col=create_time, type=DATETIME}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=304
       nullIndicatorByte=2
       nullIndicatorBit=5
       slotIdx=22
   
     SlotDescriptor{id=20, col=register_time, type=DATETIME}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=320
       nullIndicatorByte=2
       nullIndicatorBit=6
       slotIdx=23
   
     SlotDescriptor{id=21, col=submission_time, type=DATETIME}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=336
       nullIndicatorByte=2
       nullIndicatorBit=7
       slotIdx=24
   
     SlotDescriptor{id=22, col=auth_date, type=DATETIME}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=352
       nullIndicatorByte=3
       nullIndicatorBit=0
       slotIdx=25
   
     SlotDescriptor{id=23, col=auth_status, type=INT}
       parent=0
       materialized=true
       byteSize=4
       byteOffset=12
       nullIndicatorByte=0
       nullIndicatorBit=2
       slotIdx=3
   
     SlotDescriptor{id=24, col=error_message, type=VARCHAR(*)}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=368
       nullIndicatorByte=3
       nullIndicatorBit=1
       slotIdx=26
   
     SlotDescriptor{id=25, col=update_time, type=DATETIME}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=384
       nullIndicatorByte=3
       nullIndicatorBit=2
       slotIdx=27
   
     SlotDescriptor{id=26, col=error_type, type=INT}
       parent=0
       materialized=true
       byteSize=4
       byteOffset=16
       nullIndicatorByte=0
       nullIndicatorBit=3
       slotIdx=4
   
     SlotDescriptor{id=27, col=permit_date, type=DATETIME}
       parent=0
       materialized=true
       byteSize=16
       byteOffset=400
       nullIndicatorByte=3
       nullIndicatorBit=3
       slotIdx=28
   
     SlotDescriptor{id=28, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=0
       materialized=true
       byteSize=1
       byteOffset=5
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=1
   
   
   TupleDescriptor{id=1, tbl=test_esc_system_usr_company, byteSize=48, 
materialized=true}
     SlotDescriptor{id=53, col=id, type=VARCHAR(*)}
       parent=1
       materialized=true
       byteSize=16
       byteOffset=16
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=1
   
     SlotDescriptor{id=54, col=contact_name, type=VARCHAR(*)}
       parent=1
       materialized=true
       byteSize=16
       byteOffset=32
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=2
   
     SlotDescriptor{id=55, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=1
       materialized=true
       byteSize=1
       byteOffset=1
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=0
   
   
   TupleDescriptor{id=2, tbl=test_esc_system_plt_access_token, byteSize=96, 
materialized=true}
     SlotDescriptor{id=29, col=id, type=VARCHAR(*)}
       parent=2
       materialized=true
       byteSize=16
       byteOffset=16
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=1
   
     SlotDescriptor{id=31, col=client_actor_id, type=VARCHAR(*)}
       parent=2
       materialized=true
       byteSize=16
       byteOffset=32
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=2
   
     SlotDescriptor{id=32, col=service_actor_id, type=VARCHAR(*)}
       parent=2
       materialized=true
       byteSize=16
       byteOffset=48
       nullIndicatorByte=0
       nullIndicatorBit=1
       slotIdx=3
   
     SlotDescriptor{id=33, col=service_application, type=VARCHAR(*)}
       parent=2
       materialized=true
       byteSize=16
       byteOffset=64
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=4
   
     SlotDescriptor{id=35, col=refresh_token_expiration, type=DATETIME}
       parent=2
       materialized=true
       byteSize=16
       byteOffset=80
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=5
   
     SlotDescriptor{id=36, col=current_token, type=TINYINT}
       parent=2
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=56, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=2
       materialized=true
       byteSize=1
       byteOffset=1
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=0
   
   
   TupleDescriptor{id=3, tbl=test_esc_system_plt_ebay_user, byteSize=48, 
materialized=true}
     SlotDescriptor{id=30, col=token_id, type=VARCHAR(*)}
       parent=3
       materialized=true
       byteSize=16
       byteOffset=16
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=1
   
     SlotDescriptor{id=34, col=ebay_name, type=VARCHAR(*)}
       parent=3
       materialized=true
       byteSize=16
       byteOffset=32
       nullIndicatorByte=0
       nullIndicatorBit=1
       slotIdx=2
   
     SlotDescriptor{id=57, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=3
       materialized=true
       byteSize=1
       byteOffset=1
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=0
   
   
   TupleDescriptor{id=4, tbl=null, byteSize=8, materialized=false}
     SlotDescriptor{id=37, col=null, type=BIGINT}
       parent=4
       materialized=true
       byteSize=8
       byteOffset=0
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=0
   
   
   TupleDescriptor{id=5, tbl=null, byteSize=16, materialized=false}
     SlotDescriptor{id=38, col=null, type=BIGINT}
       parent=5
       materialized=true
       byteSize=8
       byteOffset=8
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
   
   TupleDescriptor{id=6, tbl=t, byteSize=0, materialized=false}
     SlotDescriptor{id=39, col=client_actor_id, type=VARCHAR(*)}
       parent=6
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=40, col=service_actor_id, type=VARCHAR(*)}
       parent=6
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=41, col=service_application, type=VARCHAR(*)}
       parent=6
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=42, col=ebay_name, type=VARCHAR(*)}
       parent=6
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=43, col=refresh_token_expiration, type=DATETIME}
       parent=6
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=44, col=current_token, type=TINYINT}
       parent=6
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=45, col=num, type=BIGINT}
       parent=6
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
   
   TupleDescriptor{id=7, tbl=d, byteSize=0, materialized=false}
     SlotDescriptor{id=46, col=client_actor_id, type=VARCHAR(*)}
       parent=7
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=47, col=service_actor_id, type=VARCHAR(*)}
       parent=7
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=48, col=service_application, type=VARCHAR(*)}
       parent=7
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=49, col=ebay_name, type=VARCHAR(*)}
       parent=7
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=50, col=num, type=BIGINT}
       parent=7
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=51, col=refresh_token_expiration, type=DATETIME}
       parent=7
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=52, col=current_token, type=TINYINT}
       parent=7
       materialized=false
       byteSize=0
       byteOffset=-1
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
   
   TupleDescriptor{id=8, tbl=null, byteSize=16, materialized=true}
     SlotDescriptor{id=58, col=null, type=BIGINT}
       parent=8
       materialized=true
       byteSize=8
       byteOffset=8
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
   
   TupleDescriptor{id=9, tbl=null, byteSize=208, materialized=true}
     SlotDescriptor{id=59, col=id, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=16
       nullIndicatorByte=0
       nullIndicatorBit=2
       slotIdx=2
   
     SlotDescriptor{id=60, col=client_actor_id, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=32
       nullIndicatorByte=0
       nullIndicatorBit=3
       slotIdx=3
   
     SlotDescriptor{id=61, col=service_actor_id, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=48
       nullIndicatorByte=0
       nullIndicatorBit=4
       slotIdx=4
   
     SlotDescriptor{id=62, col=service_application, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=64
       nullIndicatorByte=0
       nullIndicatorBit=5
       slotIdx=5
   
     SlotDescriptor{id=63, col=refresh_token_expiration, type=DATETIME}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=80
       nullIndicatorByte=0
       nullIndicatorBit=6
       slotIdx=6
   
     SlotDescriptor{id=64, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=9
       materialized=true
       byteSize=1
       byteOffset=2
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=65, col=token_id, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=96
       nullIndicatorByte=0
       nullIndicatorBit=7
       slotIdx=7
   
     SlotDescriptor{id=66, col=ebay_name, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=112
       nullIndicatorByte=1
       nullIndicatorBit=0
       slotIdx=8
   
     SlotDescriptor{id=67, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=9
       materialized=true
       byteSize=1
       byteOffset=3
       nullIndicatorByte=0
       nullIndicatorBit=1
       slotIdx=1
   
     SlotDescriptor{id=68, col=null, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=128
       nullIndicatorByte=1
       nullIndicatorBit=1
       slotIdx=9
   
     SlotDescriptor{id=69, col=null, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=144
       nullIndicatorByte=1
       nullIndicatorBit=2
       slotIdx=10
   
     SlotDescriptor{id=70, col=null, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=160
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=11
   
     SlotDescriptor{id=71, col=null, type=VARCHAR(*)}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=176
       nullIndicatorByte=1
       nullIndicatorBit=3
       slotIdx=12
   
     SlotDescriptor{id=72, col=null, type=DATETIME}
       parent=9
       materialized=true
       byteSize=16
       byteOffset=192
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=13
   
   
   TupleDescriptor{id=10, tbl=null, byteSize=208, materialized=true}
     SlotDescriptor{id=73, col=id, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=16
       nullIndicatorByte=0
       nullIndicatorBit=2
       slotIdx=2
   
     SlotDescriptor{id=74, col=client_actor_id, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=32
       nullIndicatorByte=0
       nullIndicatorBit=3
       slotIdx=3
   
     SlotDescriptor{id=75, col=service_actor_id, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=48
       nullIndicatorByte=0
       nullIndicatorBit=4
       slotIdx=4
   
     SlotDescriptor{id=76, col=service_application, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=64
       nullIndicatorByte=0
       nullIndicatorBit=5
       slotIdx=5
   
     SlotDescriptor{id=77, col=refresh_token_expiration, type=DATETIME}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=80
       nullIndicatorByte=0
       nullIndicatorBit=6
       slotIdx=6
   
     SlotDescriptor{id=78, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=10
       materialized=true
       byteSize=1
       byteOffset=2
       nullIndicatorByte=0
       nullIndicatorBit=0
       slotIdx=0
   
     SlotDescriptor{id=79, col=token_id, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=96
       nullIndicatorByte=0
       nullIndicatorBit=7
       slotIdx=7
   
     SlotDescriptor{id=80, col=ebay_name, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=112
       nullIndicatorByte=1
       nullIndicatorBit=0
       slotIdx=8
   
     SlotDescriptor{id=81, col=__DORIS_DELETE_SIGN__, type=TINYINT}
       parent=10
       materialized=true
       byteSize=1
       byteOffset=3
       nullIndicatorByte=0
       nullIndicatorBit=1
       slotIdx=1
   
     SlotDescriptor{id=82, col=null, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=128
       nullIndicatorByte=1
       nullIndicatorBit=1
       slotIdx=9
   
     SlotDescriptor{id=83, col=null, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=144
       nullIndicatorByte=1
       nullIndicatorBit=2
       slotIdx=10
   
     SlotDescriptor{id=84, col=null, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=160
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=11
   
     SlotDescriptor{id=85, col=null, type=VARCHAR(*)}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=176
       nullIndicatorByte=1
       nullIndicatorBit=3
       slotIdx=12
   
     SlotDescriptor{id=86, col=null, type=DATETIME}
       parent=10
       materialized=true
       byteSize=16
       byteOffset=192
       nullIndicatorByte=0
       nullIndicatorBit=-1
       slotIdx=13
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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.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