Merge multiple columns in bulkloader
问题 I'm using app engine's bulkloader to import a CSV file into my datastore. I've got a number of columns that I want to merge into one, for example they're all URLs, but not all of them are supplied and there is a superseding order, eg: url_main url_temp url_test I want to say: "Ok, if url_main exists, use that, otherwise user url_test and then use url_temp " Is it, therefore, possible to create a custom import transform that references columns and merges them into one based on conditions? 回答1: