From 72d28e3c0a43b3d50482bdb2549364e2bfd56f19 Mon Sep 17 00:00:00 2001 From: Mojtaba Yaghoobzadeh <61758406+TabaMojj@users.noreply.github.com> Date: Sat, 8 Jan 2022 17:46:03 +0330 Subject: [PATCH] Fix returned value There is a mistake in section "Example for range key dictionary". The returned value is not correct. --- docs/en/sql-reference/functions/ext-dict-functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/sql-reference/functions/ext-dict-functions.md b/docs/en/sql-reference/functions/ext-dict-functions.md index 0e8352d2d1e..84e1e5eca3b 100644 --- a/docs/en/sql-reference/functions/ext-dict-functions.md +++ b/docs/en/sql-reference/functions/ext-dict-functions.md @@ -217,8 +217,8 @@ Result: ``` text (0,'2019-05-20') 0 \N \N (NULL,NULL) (1,'2019-05-20') 1 First First ('First','First') -(2,'2019-05-20') 0 \N \N (NULL,NULL) -(3,'2019-05-20') 0 \N \N (NULL,NULL) +(2,'2019-05-20') 1 Second \N ('Second',NULL) +(3,'2019-05-20') 1 Third Third ('Third','Third') (4,'2019-05-20') 0 \N \N (NULL,NULL) ```