Here are some results from early this morning from some of our tests that run every night. This test updated 16 million rows for two ints and a varchar column and finished in just under a minute.
--------------
update orders set o_comment='whatever', o_custkey=44, o_shippriority=8 where o_orderkey <= 64000000
--------------
Query OK, 16000000 rows affected (59.03 sec)
Rows matched: 0 Changed: 0 Warnings: 0
However, we currently only support col=value updates in 1.0. We are adding support for col=col updates and col=virtual col updates for the 1.1 release. That feature should be available for evaluation in the 1.1.2 alpha release due out in mid May. Another possibility may be to do the tranformation prior to the import so that the import file contains the transformed column.
Here's a link to our roadmap -
www.infinidb.org/resources/tech-articles...nity-edition-roadmap .
If it would be possible for you to post the load data statement with the transformation or the update statement that you would potentially use that would be helpful. Thanks.