terrymanu opened a new issue #243: Write document for process generated key and 
the SQL rewrite result
URL: https://github.com/apache/incubator-shardingsphere-doc/issues/243
 
 
   ShardingSphere can process 4 types of SQL (assume id is auto_imcrement): 
   
   - INSERT (id, name) values (1, "xxx")      =>    not change
   - INSERT (name) VALUES ("xxx")            =>    INSERT (name, id) VALUES 
("xxx", ?)
   - INSERT VALUES ("xxx")                         =>    INSERT (name, id) 
VALUES ("xxx", ?)
   - INSERT VALUES (1, "xxx")                     =>    INSERT (id, name) 
VALUES (1, "xxx")
   
   This feature need to documentation more details.
   
   And we need to add more document for `INSERT SET` and `INSERT for multiple 
VALUES`

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