[ 
https://issues.apache.org/jira/browse/IGNITE-14742?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Izhikov updated IGNITE-14742:
-------------------------------------
    Comment: was deleted

(was: {panel:title=Branch: [pull/9490/head] Base: [master] : Possible Blockers 
(2)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1}
{color:#d04437}AWS{color} [[tests 0 Exit Code 
|https://ci.ignite.apache.org/viewLog.html?buildId=6241058]]

{color:#d04437}GCE{color} [[tests 0 Exit Code 
|https://ci.ignite.apache.org/viewLog.html?buildId=6241069]]

{panel}
{panel:title=Branch: [pull/9490/head] Base: [master] : New Tests 
(36)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#D6F7C1}
{color:#00008b}Binary Objects{color} [[tests 
6|https://ci.ignite.apache.org/viewLog.html?buildId=6241060]]
* {color:#013220}IgniteBinaryObjectsTestSuite: 
BinaryArraySelfTest.testBinaryArraySerDe - PASSED{color}
* {color:#013220}IgniteBinaryObjectsTestSuite: 
BinaryArraySelfTest.testBinaryModeArray - PASSED{color}
* {color:#013220}IgniteBinaryObjectsTestSuite: 
BinaryArraySelfTest.testBinaryArrayFieldSerDe - PASSED{color}
* {color:#013220}IgniteBinaryObjectsTestSuite: 
BinaryArraySelfTest.testArrayOfBinariesSerDe - PASSED{color}
* {color:#013220}IgniteBinaryObjectsTestSuite: BinaryArraySelfTest.testArrayKey 
- PASSED{color}
* {color:#013220}IgniteBinaryObjectsTestSuite: 
BinaryArraySelfTest.testArrayValue - PASSED{color}

{color:#00008b}PDS 2{color} [[tests 
30|https://ci.ignite.apache.org/viewLog.html?buildId=6241946]]
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testReReadWhenStateWasNotStored[specificConsistentId=true, 
walMode=LOG_ONLY, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testMultiNodeConsumption[specificConsistentId=true, 
walMode=LOG_ONLY, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testCdcSingleton[specificConsistentId=true, walMode=LOG_ONLY, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testReadAllKeys[specificConsistentId=false, walMode=LOG_ONLY, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testMultiNodeConsumption[specificConsistentId=false, 
walMode=BACKGROUND, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testCdcSingleton[specificConsistentId=false, walMode=BACKGROUND, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testReadAllKeys[specificConsistentId=true, walMode=LOG_ONLY, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testReadBeforeGracefulShutdown[specificConsistentId=true, 
walMode=LOG_ONLY, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testReadAllKeys[specificConsistentId=true, walMode=FSYNC, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testReadBeforeGracefulShutdown[specificConsistentId=true, 
walMode=FSYNC, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
* {color:#013220}IgnitePdsTestSuite2: 
CdcSelfTest.testReReadWhenStateWasNotStored[specificConsistentId=true, 
walMode=FSYNC, 
metricExporter=org.apache.ignite.cdc.CdcSelfTest$$Lambda$17/2118939350@2ef0dd86]
 - PASSED{color}
... and 19 new tests

{panel}
[TeamCity *--> Run :: All* 
Results|https://ci.ignite.apache.org/viewLog.html?buildId=6241154&buildTypeId=IgniteTests24Java8_RunAll])

> 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)

Reply via email to