|
| 1 | +statement ok |
| 2 | +SET RW_IMPLICIT_FLUSH TO true; |
| 3 | + |
| 4 | + |
| 5 | +statement error |
| 6 | +create table t (m map (float, float)); |
| 7 | +---- |
| 8 | +db error: ERROR: Failed to run the query |
| 9 | + |
| 10 | +Caused by: |
| 11 | + invalid map key type: double precision |
| 12 | + |
| 13 | + |
| 14 | +query error |
| 15 | +select map_from_entries(array[1.0,2.0,3.0], array[1,2,3]); |
| 16 | +---- |
| 17 | +db error: ERROR: Failed to run the query |
| 18 | + |
| 19 | +Caused by these errors (recent errors listed first): |
| 20 | + 1: Failed to bind expression: map_from_entries(ARRAY[1.0, 2.0, 3.0], ARRAY[1, 2, 3]) |
| 21 | + 2: Expr error |
| 22 | + 3: invalid map key type: numeric |
| 23 | + |
| 24 | + |
| 25 | +query error |
| 26 | +select map_from_entries(array[1,1,3], array[1,2,3]); |
| 27 | +---- |
| 28 | +db error: ERROR: Failed to run the query |
| 29 | + |
| 30 | +Caused by these errors (recent errors listed first): |
| 31 | + 1: Expr error |
| 32 | + 2: error while evaluating expression `map('{1,1,3}', '{1,2,3}')` |
| 33 | + 3: map keys must be unique |
| 34 | + |
| 35 | + |
| 36 | +query ? |
| 37 | +select map_from_entries(array[1,2,3], array[1,null,3]); |
| 38 | +---- |
| 39 | +{"1":1,"2":NULL,"3":3} |
| 40 | + |
| 41 | + |
| 42 | +query error |
| 43 | +select map_from_entries(array[1,null,3], array[1,2,3]); |
| 44 | +---- |
| 45 | +db error: ERROR: Failed to run the query |
| 46 | + |
| 47 | +Caused by these errors (recent errors listed first): |
| 48 | + 1: Expr error |
| 49 | + 2: error while evaluating expression `map('{1,NULL,3}', '{1,2,3}')` |
| 50 | + 3: map keys must not be NULL |
| 51 | + |
| 52 | + |
| 53 | +query error |
| 54 | +select map_from_entries(array[1,3], array[1,2,3]); |
| 55 | +---- |
| 56 | +db error: ERROR: Failed to run the query |
| 57 | + |
| 58 | +Caused by these errors (recent errors listed first): |
| 59 | + 1: Expr error |
| 60 | + 2: error while evaluating expression `map('{1,3}', '{1,2,3}')` |
| 61 | + 3: map keys and values have different length |
| 62 | + |
| 63 | + |
| 64 | +query error |
| 65 | +select map_from_entries(array[1,2], array[1,2]) = map_from_entries(array[2,1], array[2,1]); |
| 66 | +---- |
| 67 | +db error: ERROR: Failed to run the query |
| 68 | + |
| 69 | +Caused by these errors (recent errors listed first): |
| 70 | + 1: Failed to bind expression: map_from_entries(ARRAY[1, 2], ARRAY[1, 2]) = map_from_entries(ARRAY[2, 1], ARRAY[2, 1]) |
| 71 | + 2: function equal(map(integer,integer), map(integer,integer)) does not exist |
| 72 | + |
| 73 | + |
| 74 | +statement ok |
| 75 | +create table t ( |
| 76 | + m1 map(varchar, float), |
| 77 | + m2 map(int, bool), |
| 78 | + m3 map(varchar, map(varchar, varchar)), |
| 79 | + l map(varchar,int)[], |
| 80 | + s struct<m map(varchar, struct<x int>)>, |
| 81 | +); |
| 82 | + |
| 83 | + |
| 84 | +statement ok |
| 85 | +insert into t values ( |
| 86 | + map_from_entries(array['a','b','c'], array[1.0,2.0,3.0]::float[]), |
| 87 | + map_from_entries(array[1,2,3], array[true,false,true]), |
| 88 | + map_from_entries(array['a','b'], |
| 89 | + array[ |
| 90 | + map_from_entries(array['a1'], array['a2']), |
| 91 | + map_from_entries(array['b1'], array['b2']) |
| 92 | + ] |
| 93 | + ), |
| 94 | + array[ |
| 95 | + map_from_entries(array['a','b','c'], array[1,2,3]), |
| 96 | + map_from_entries(array['d','e','f'], array[4,5,6]) |
| 97 | + ], |
| 98 | + row( |
| 99 | + map_from_entries(array['a','b','c'], array[row(1),row(2),row(3)]::struct<x int>[]) |
| 100 | + ) |
| 101 | +); |
| 102 | + |
| 103 | +# cast(map(character varying,integer)) -> map(character varying,double precision) |
| 104 | +query ? |
| 105 | +select map_from_entries(array['a','b','c'], array[1,2,3])::map(varchar,float); |
| 106 | +---- |
| 107 | +{"a":1,"b":2,"c":3} |
| 108 | + |
| 109 | + |
| 110 | +statement ok |
| 111 | +insert into t(m1) values (map_from_entries(array['a','b','c'], array[1,2,3])); |
| 112 | + |
| 113 | +query ????? rowsort |
| 114 | +select * from t; |
| 115 | +---- |
| 116 | +{"a":1,"b":2,"c":3} NULL NULL NULL NULL |
| 117 | +{"a":1,"b":2,"c":3} {"1":t,"2":f,"3":t} {"a":{"a1":a2},"b":{"b1":b2}} {"{\"a\":1,\"b\":2,\"c\":3}","{\"d\":4,\"e\":5,\"f\":6}"} ("{""a"":(1),""b"":(2),""c"":(3)}") |
| 118 | + |
| 119 | +statement ok |
| 120 | +drop table t; |
0 commit comments