From e0a7fe0d364465342227bb3b20d8e0304ffc53fb Mon Sep 17 00:00:00 2001 From: dat-a-man <98139823+dat-a-man@users.noreply.github.com> Date: Wed, 24 Apr 2024 20:38:59 +0530 Subject: [PATCH] Updated autodetectors (#1253) --- docs/website/docs/general-usage/schema.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/website/docs/general-usage/schema.md b/docs/website/docs/general-usage/schema.md index a66552cb7f..989b023b01 100644 --- a/docs/website/docs/general-usage/schema.md +++ b/docs/website/docs/general-usage/schema.md @@ -222,7 +222,7 @@ and columns are inferred from data. ### Data type autodetectors You can define a set of functions that will be used to infer the data type of the column from a -value. The functions are run from top to bottom on the lists. Look in `detections.py` to see what is +value. The functions are run from top to bottom on the lists. Look in [`detections.py`](https://github.com/dlt-hub/dlt/blob/devel/dlt/common/schema/detections.py) to see what is available. ```yaml @@ -231,6 +231,9 @@ settings: - timestamp - iso_timestamp - iso_date + - large_integer + - hexbytes_to_text + - wei_to_double ``` ### Column hint rules