We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0923e12 commit 7e74ed8Copy full SHA for 7e74ed8
1 file changed
sqlmesh/core/config/connection.py
@@ -676,7 +676,10 @@ class MySQLConnectionConfig(ConnectionConfig):
676
677
type_: Literal["mysql"] = Field(alias="type", default="mysql")
678
679
- _cursor_kwargs = {"buffered": True}
+ @property
680
+ def _cursor_kwargs(self) -> t.Optional[t.Dict[str, t.Any]]:
681
+ """Key-value arguments that will be passed during cursor construction."""
682
+ return {"buffered": True}
683
684
@property
685
def _connection_kwargs_keys(self) -> t.Set[str]:
0 commit comments