From d619dc3690c9f5b3524360aa9dadb38651f2f9f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Mon, 9 Sep 2024 19:08:06 -0600 Subject: [PATCH] Link to String.params.length --- singer_sdk/connectors/sql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/singer_sdk/connectors/sql.py b/singer_sdk/connectors/sql.py index af5741959..e36486701 100644 --- a/singer_sdk/connectors/sql.py +++ b/singer_sdk/connectors/sql.py @@ -175,8 +175,8 @@ def string_to_jsonschema(self, column_type: sa.types.String) -> dict: # noqa: P column_type (:column_type:`String`): The column type. .. versionchanged:: 0.41.0 - The ``length`` attribute is now used to determine the maximum length of the - string type. + The :column_type:`length ` attribute is now used to + determine the maximum length of the string type. """ if column_type.length: return th.StringType(max_length=column_type.length).type_dict # type: ignore[no-any-return]