示例#1
0
 def reflects_unique_constraints_unambiguously(self):
     return exclusions.fails_on("mysql", "oracle")
示例#2
0
 def check_constraints_w_enforcement(self):
     return exclusions.fails_on("mysql")
示例#3
0
 def fk_names(self):
     """foreign key constraints always have names in the DB"""
     return exclusions.fails_on("sqlite")
示例#4
0
 def fk_names(self):
     """foreign key constraints always have names in the DB"""
     return exclusions.fails_on('sqlite')
示例#5
0
 def reflects_unique_constraints_unambiguously(self):
     return exclusions.fails_on("mysql")
示例#6
0
 def check_constraints_w_enforcement(self):
     return exclusions.fails_on(["mysql", "mariadb"])
示例#7
0
 def check_constraints_w_enforcement(self):
     return exclusions.fails_on("mysql")
示例#8
0
 def fk_onupdate_is_reflected(self):
     return self.fk_onupdate + exclusions.fails_on(["mssql"])
示例#9
0
 def fk_ondelete_is_reflected(self):
     return exclusions.fails_on(["mssql"])
示例#10
0
 def fk_onupdate_restrict(self):
     return self.fk_onupdate + exclusions.fails_on(["mssql"])
示例#11
0
 def fk_deferrable_is_reflected(self):
     return self.fk_deferrable + exclusions.fails_on("oracle")
示例#12
0
 def reflects_indexes_w_sorting(self):
     # TODO: figure out what's happening on the SQLAlchemy side
     # when we reflect an index that has asc() / desc() on the column
     return exclusions.fails_on(["oracle"])