Fix returned value

There is a mistake in section "Example for range key dictionary". The returned value is not correct.
This commit is contained in:
Mojtaba Yaghoobzadeh 2022-01-08 17:46:03 +03:30 committed by GitHub
parent 8fedd4237d
commit 72d28e3c0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
```