Closed jacoryjin closed 7 years ago
def sync_dropped_procedures(src, dest): for p in dest: if p not in src:
yield dest[p].drop(), dest[p].create() # fix bug, key of p not in src, src[p].create() will be error
I met the problem, too
@Ulysses1988 you can find the code and fixed it like me! yield dest[p].drop(), dest[p].create()
Thank you, merged.
Thank you
def sync_dropped_procedures(src, dest): for p in dest: if p not in src:
yield dest[p].drop(), src[p].create()