log.Printf("Warning: Merging destination map for chart '%s'. Cannot overwrite table item '%s', with non table value: %v",chartName,key,val)
// despite message in warning, we appear to do exactly that, and do take the dst value
log.Printf("Warning: Merging destination map for chart '%s'. Overwriting table item '%s', with non table value: %v",chartName,key,dv)
rv[key]=dv
case!srcIsTable&&dstIsTable:
log.Printf("Warning: Merging destination map for chart '%s'. The destination item '%s' is a table and ignoring the source '%s' as it has a non-table value of: %v",chartName,key,key,val)