in dbt/adapters/maxcompute/utils.py [0:0]
def is_schema_not_found(e: ODPSError) -> bool:
if isinstance(e, NoSuchObject):
return True
if "ODPS-0110061" in str(e):
return True
if "ODPS-0422155" in str(e):
return True
if "ODPS-0420111" in str(e):
return True
return False