diff --git a/docs/source/user-guide/sql/scalar_functions.md b/docs/source/user-guide/sql/scalar_functions.md index 456e9d3c7feb..f8602a102f3b 100644 --- a/docs/source/user-guide/sql/scalar_functions.md +++ b/docs/source/user-guide/sql/scalar_functions.md @@ -3776,7 +3776,7 @@ SELECT map_values(MAP {'a': 1, 'b': NULL, 'c': 3}); ---- [1, , 3] -select map_keys(map([100, 5], [42,43])); +select map_values(map([100, 5], [42,43])); ---- [42, 43] ```