ModEtchFill
ModEtchFill
Duplicates #313
We are inconsistent. For shard key name matching, we do case insensitive check, isShardKey https://github.com/paypal/hera/blob/af6bc1d04dfc16241f851ef25ca925df1cd839a8/lib/coordinatorsharding.go#L261C1-L274C44 The error comes from https://github.com/paypal/hera/blob/main/worker/shared/cmdprocessor.go#L335
I think for multiple rows, you can use multiple bind names/positions, e.g. INSERT INTO tbl_name (a,b,c) VALUES(1,2,3), (4,5,6), (7,8,9); https://dev.mysql.com/doc/refman/8.0/en/insert.html Oracle uses OCIBindArrayOfStruct() [https://github.com/paypal/hera/blob/master/worker/cppworker/worker/OCCChild.cpp#L3588] with the same sql as a...