You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Maxim Muzafarov (Jira)" <ji...@apache.org> on 2019/10/03 11:18:00 UTC

[jira] [Updated] (IGNITE-7204) Unexpected behavior if passing null to binaryObject.field method

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

Maxim Muzafarov updated IGNITE-7204:
------------------------------------
    Fix Version/s:     (was: 2.8)
                   2.9

> Unexpected behavior if passing null to binaryObject.field method
> ----------------------------------------------------------------
>
>                 Key: IGNITE-7204
>                 URL: https://issues.apache.org/jira/browse/IGNITE-7204
>             Project: Ignite
>          Issue Type: Bug
>    Affects Versions: 2.3
>            Reporter: Alexei Scherbakov
>            Assignee: Dmitry Vinnik
>            Priority: Major
>              Labels: newbie
>             Fix For: 2.9
>
>
> If assertions are disabled, when first field value will be returned.
> If not, an AssertionError will be thrown.
> Reproducer:
> {noformat}
> public void testNullField() throws Exception {
>         try {
>             final IgniteEx ex = startGrid(0);
>             final IgniteCache<Integer, BinaryObject> test = ex.cache("test").withKeepBinary();
>             final BinaryObjectBuilder bldr = ex.binary().builder("obj");
>             bldr.setField("x", 1);
>             test.put(0, bldr.build());
>             test.query(new ScanQuery<>(new IgniteBiPredicate<Integer, BinaryObject>() {
>                 @Override public boolean apply(Integer o, BinaryObject o2) {
>                     final Object q = o2.field(null);
>                     return false;
>                 }
>             })).getAll();
>         }
>         finally {
>             stopAllGrids();
>         }
>     }
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)