|
@@ -440,10 +440,14 @@ def loadSafely(pars,entries,dryRun=True):
|
|
|
|
|
|
n=len(updateRows)
|
|
|
print(f'Updating {n} entries')
|
|
|
+
|
|
|
+ print(updateRows)
|
|
|
+
|
|
|
if n and not dryRun:
|
|
|
printErr(db.modifyRows('update',project,schema,query,updateRows))
|
|
|
n=len(insertRows)
|
|
|
print(f'Inserting {n} entries')
|
|
|
+ print(insertRows)
|
|
|
if n and not dryRun:
|
|
|
printErr(db.modifyRows('insert',project,schema,query,insertRows))
|
|
|
|