You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2021/07/01 10:48:13 UTC

[GitHub] [incubator-doris] banjin commented on issue #6137: can not fetch partitions

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: commits-unsubscribe@doris.apache.org

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



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