Add mapValues test

This commit is contained in:
hexiaoting 2021-01-11 10:56:13 +08:00
parent 41fe290b2b
commit 9e3b4a67de
2 changed files with 4 additions and 0 deletions

View File

@ -14,3 +14,6 @@
[232]
[233]
[234]
[1000]
[1001]
[1002]

View File

@ -18,4 +18,5 @@ select mapContains(a, b), mapContains(a, c), mapContains(a, 233) from table_map;
select mapContains(a, 'aaa') from table_map; -- { serverError 43 }
select mapContains(b, 'aaa') from table_map; -- { serverError 43 }
select mapKeys(a) from table_map;
select mapValues(a) from table_map;
drop table if exists table_map;