1
1
org .partiql .spi .value .DatumToStringTest .testDatumBagToString [datumWithMixedType ]= [
2
- DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=hello world }]}
2
+ DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=' hello world' }]}
3
3
]
4
4
5
5
6
6
org .partiql .spi .value .DatumToStringTest .testDatumBagToString [datumWithNestedType ]= [
7
- DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumInt {_type=INTEGER , _value=2}, DatumInt {_type=INTEGER , _value=3}]}, DatumCollection {_type = BAG (DYNAMIC ), _value = [DatumInt {_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=hello world }]}]}
7
+ DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumInt {_type=INTEGER , _value=2}, DatumInt {_type=INTEGER , _value=3}]}, DatumCollection {_type = BAG (DYNAMIC ), _value = [DatumInt {_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=' hello world' }]}]}
8
8
]
9
9
10
10
@@ -34,17 +34,17 @@ DatumBytes{_type=BLOB(2147483647), _value=[10, 50, 100, 127]}
34
34
35
35
36
36
org .partiql .spi .value .DatumToStringTest .testDatumCharsToString [datum ]= [
37
- DatumString {_type=CHAR(10), _value=test }
37
+ DatumString {_type=CHAR(10), _value=' test ' }
38
38
]
39
39
40
40
41
41
org .partiql .spi .value .DatumToStringTest .testDatumCollectionToString [datumWithMixedType ]= [
42
- DatumCollection {_type=ARRAY(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=hello world }]}
42
+ DatumCollection {_type=ARRAY(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=' hello world' }]}
43
43
]
44
44
45
45
46
46
org .partiql .spi .value .DatumToStringTest .testDatumCollectionToString [datumWithNestedType ]= [
47
- DatumCollection {_type=ARRAY(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumCollection {_type=ARRAY(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumInt {_type=INTEGER , _value=2}, DatumInt {_type=INTEGER , _value=3}]}, DatumCollection {_type = ARRAY (DYNAMIC ), _value = [DatumInt {_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=hello world }]}]}
47
+ DatumCollection {_type=ARRAY(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumCollection {_type=ARRAY(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumInt {_type=INTEGER , _value=2}, DatumInt {_type=INTEGER , _value=3}]}, DatumCollection {_type = ARRAY (DYNAMIC ), _value = [DatumInt {_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=' hello world' }]}]}
48
48
]
49
49
50
50
@@ -169,17 +169,17 @@ DatumNull{_type=STRING}
169
169
170
170
171
171
org .partiql .spi .value .DatumToStringTest .testDatumRowToString [datumWithDuplicateKey ]= [
172
- DatumRow {_type=ROW(col1 : STRING , col1 : INTEGER ), _value={col1: [DatumString {_type=STRING , _value=John }, DatumInt {_type=INTEGER , _value=30}]}}
172
+ DatumRow {_type=ROW(col1 : STRING , col1 : INTEGER ), _value={col1: [DatumString {_type=STRING , _value=' John' }, DatumInt {_type=INTEGER , _value=30}]}}
173
173
]
174
174
175
175
176
176
org .partiql .spi .value .DatumToStringTest .testDatumRowToString [datumWithNested ]= [
177
- DatumRow {_type=ROW(col1 : STRING , col2 : BAG (DYNAMIC )), _value={col2: [DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=hello world }]}], col1 : [DatumString {_type=STRING , _value=John }]}}
177
+ DatumRow {_type=ROW(col1 : STRING , col2 : BAG (DYNAMIC )), _value={col2: [DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=' hello world' }]}], col1 : [DatumString {_type=STRING , _value=' John' }]}}
178
178
]
179
179
180
180
181
181
org .partiql .spi .value .DatumToStringTest .testDatumRowToString [datum ]= [
182
- DatumRow {_type=ROW(col1 : STRING , col2 : INTEGER ), _value={col2: [DatumInt {_type=INTEGER , _value=30}], col1: [DatumString {_type=STRING , _value=John }]}}
182
+ DatumRow {_type=ROW(col1 : STRING , col2 : INTEGER ), _value={col2: [DatumInt {_type=INTEGER , _value=30}], col1: [DatumString {_type=STRING , _value=' John' }]}}
183
183
]
184
184
185
185
@@ -189,22 +189,22 @@ DatumShort{_type=SMALLINT, _value=1234}
189
189
190
190
191
191
org .partiql .spi .value .DatumToStringTest .testDatumStringToString [datum ]= [
192
- DatumString {_type=STRING , _value=hello world }
192
+ DatumString {_type=STRING , _value=' hello world' }
193
193
]
194
194
195
195
196
196
org .partiql .spi .value .DatumToStringTest .testDatumStructToString [datumWithDuplicateKey ]= [
197
- DatumStruct {_type=STRUCT , _value={name: [DatumString {_type=STRING , _value=John }, DatumInt {_type=INTEGER , _value=30}]}}
197
+ DatumStruct {_type=STRUCT , _value={name: [DatumString {_type=STRING , _value=' John' }, DatumInt {_type=INTEGER , _value=30}]}}
198
198
]
199
199
200
200
201
201
org .partiql .spi .value .DatumToStringTest .testDatumStructToString [datumWithNested ]= [
202
- DatumStruct {_type=STRUCT , _value={name: [DatumString {_type=STRING , _value=John }], property: [DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=hello world }]}]}}
202
+ DatumStruct {_type=STRUCT , _value={name: [DatumString {_type=STRING , _value=' John' }], property: [DatumCollection {_type=BAG(DYNAMIC ), _value=[DatumInt{_type=INTEGER , _value=1}, DatumString {_type=STRING , _value=' hello world' }]}]}}
203
203
]
204
204
205
205
206
206
org .partiql .spi .value .DatumToStringTest .testDatumStructToString [datum ]= [
207
- DatumStruct {_type=STRUCT , _value={name: [DatumString {_type=STRING , _value=John }], age: [DatumInt {_type=INTEGER , _value=30}]}}
207
+ DatumStruct {_type=STRUCT , _value={name: [DatumString {_type=STRING , _value=' John' }], age: [DatumInt {_type=INTEGER , _value=30}]}}
208
208
]
209
209
210
210
0 commit comments