cjj137783 commented on issue #2222: Incorrect integer value: 'NULL' for column
URL: 
https://github.com/apache/incubator-shardingsphere/issues/2222#issuecomment-489913073
 
 
   @codefairy08  below is my sql , my sharding column is user_id 
   
   ```
   insert into log_user_key_action_1 (id, user_id,exchange_id ) 
   values (575292640792121344, 112243515, null ) ;
   ```
   the exchange_id is Int  in mysql , and got an error message 'Incorrect 
integer value: 'null' for column 'exchange_id' at row 1'     ,  but I can 
execute in my  Sub-table   like  this :
   
   ```
   insert into log_user_key_action_1 (id, user_id,exchange_id ) 
   values (575292640792121344, 112243515, null ) ;
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to