From 45e4dfbf2b32eeee3686a42e842bb9853be57d40 Mon Sep 17 00:00:00 2001 From: allipatev <58830344+allipatev@users.noreply.github.com> Date: Thu, 7 Apr 2022 18:21:32 +0200 Subject: [PATCH] Remove LONG data type from Number Types UG section. (#19) Co-authored-by: Aleksandr Lipatev --- doc/user_guide/oracle_user_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user_guide/oracle_user_guide.md b/doc/user_guide/oracle_user_guide.md index 0dcab5e..41290eb 100644 --- a/doc/user_guide/oracle_user_guide.md +++ b/doc/user_guide/oracle_user_guide.md @@ -166,7 +166,7 @@ The Oracle dialect does not support all capabilities. A complete list can be fou ### Mapping of Number Types: -`NUMBER`, `NUMBER with precision > 36` and `LONG` are casted to `VARCHAR` to prevent a loss of precision. +`NUMBER` and `NUMBER with precision > 36` are casted to `VARCHAR` to prevent a loss of precision. If you want to return a DECIMAL type for these types you can set the property `ORACLE_CAST_NUMBER_TO_DECIMAL_WITH_PRECISION_AND_SCALE` to `,`. This will cast values of such types to `DECIMAL(,)`.