Closed zzzeek closed 6 years ago
Originally reported by: Michael Bayer (Bitbucket: zzzeek, GitHub: zzzeek)
all those has_table(tablename) functions need to become has_table(tablename, schema=None) and support when a schema name is present.
has_table(tablename)
has_table(tablename, schema=None)
Original comment by Michael Bayer (Bitbucket: zzzeek, GitHub: zzzeek):
Removing milestone: 0.4.0 (automated comment)
Original comment by jek (Bitbucket: jek, GitHub: jek):
Broke the remaining dialect implementation tasks into tickets #709, #710, #711
Looks like in 0.4 the dialects all accept schema= but not all actually implement schema inspection mojo. These need attention:
schema=
wow, a patch, didnt even see that. thanks !
Original comment by Anonymous:
fix for metadata create_all and drop_all and postgres
Originally reported by: Michael Bayer (Bitbucket: zzzeek, GitHub: zzzeek)
all those
has_table(tablename)
functions need to becomehas_table(tablename, schema=None)
and support when a schema name is present.