We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d270a32 commit c45e456Copy full SHA for c45e456
lib/sqlalchemy/sql/sqltypes.py
@@ -1718,7 +1718,7 @@ def adapt( # type: ignore
1718
kw["_disable_warnings"] = True
1719
return super().adapt(impltype, **kw)
1720
1721
- def _should_create_constraint(self, compiler: Compiled, kw: Any) -> bool:
+ def _should_create_constraint(self, compiler: Compiled, **kw: Any) -> bool:
1722
if not self._is_impl_for_variant(compiler.dialect, kw):
1723
return False
1724
return (
@@ -1862,7 +1862,7 @@ def bind_processor(
1862
self, dialect: Dialect
1863
) -> Optional[_BindProcessorType[_T]]:
1864
impl_processor = self.impl_instance.bind_processor(dialect)
1865
- dumps = self.pickler.dusmps
+ dumps = self.pickler.dumps
1866
protocol = self.protocol
1867
if impl_processor:
1868
fixed_impl_processor = impl_processor
0 commit comments