Fast path for a single row insert
At the moment we create a temporary space on the storages to insert a bulk of data into the table. But for INSERT ... VALUES () with a single row it is absolutely redundant. We can simple discover the proper bucket ant dispatch the query. It is important because our documentation declares only a single row insertion and all the overhead for multi-row insertion is redundant.
Edited by Denis Smirnov