banjin commented on issue #6137:
URL: 
https://github.com/apache/incubator-doris/issues/6137#issuecomment-872098597


   当往doris写数据时候,没有报错信息,但是数据也没有写进去
    ```
   dorisTableSink = """
       CREATE TABLE flink_doris_sink (
       id INT,
       ip VARCHAR
       )
       WITH (
         'connector' = 'doris',
         'fenodes' = ':8030',
         'table.identifier' = '库.表',
         'username' = '',
         'password' = ''
   )
   
   t_env.execute_sql(dorisTableSink)
   
   sql = "insert into flink_doris_sink values (30, '1.2.2.2')"
   r = t_env.execute_sql(sql)
   r.print()
   ```
   
   结果:
   
   ```
   +---------------------------------------------------+
   | default_catalog.default_database.flink_doris_sink |
   +---------------------------------------------------+
   |                                                -1 |
   +---------------------------------------------------+
   1 row in set
   ```
   
   数据没有插入成功
   
   
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to