[
https://issues.apache.org/jira/browse/IGNITE-14742?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17437791#comment-17437791
]
Nikolay Izhikov commented on IGNITE-14742:
------------------------------------------
The visa above is for {{DFLT_USE_TYPED_ARRAYS=false}} mode.
Failured unrelated.
> GCE [tests 0 Exit Code
> AWS [tests 0 Exit Code
Modules moved to extensions and don't exists in ignite repo anymore.
> Platform .NET (Windows) [tests 0 Exit Code
https://ci2.ignite.apache.org/buildConfiguration/IgniteTests24Java8_PlatformNetWindows/6195507
Three failures of flacky tests.
> Store array component type in binary object
> -------------------------------------------
>
> Key: IGNITE-14742
> URL: https://issues.apache.org/jira/browse/IGNITE-14742
> Project: Ignite
> Issue Type: Improvement
> Reporter: Nikolay Izhikov
> Assignee: Nikolay Izhikov
> Priority: Major
> Time Spent: 40m
> Remaining Estimate: 0h
>
> Currently, an array of custom objects can't be retrieved from the cache
> {code:java}
> public class BinaryObjectTest extends GridCommonAbstractTest {
> /** */
> @Test
> public void testArray() throws Exception {
> Ignite ign = startGrid();
> IgniteCache<Integer, TestClass1[]> cache =
> ign.createCache("my-cache");
> cache.put(1, new TestClass1[] {new TestClass1(), new TestClass1()});
> TestClass1[] obj = cache.get(1);
> assertEquals(TestClass1[].class, obj.getClass());
> }
> }
> {code}
> The fix should preserve backward compatibility.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)