[ 
https://issues.apache.org/jira/browse/IGNITE-10291?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16701930#comment-16701930
 ] 

ASF GitHub Bot commented on IGNITE-10291:
-----------------------------------------

GitHub user devozerov opened a pull request:

    https://github.com/apache/ignite/pull/5525

    IGNITE-10291

    

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/gridgain/apache-ignite ignite-10291-1

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/ignite/pull/5525.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #5525
    
----
commit 10f5f9e328c081953462c498b58edad636e307fb
Author: devozerov <vozerov@...>
Date:   2018-11-28T09:28:40Z

    WIP.

commit b35634bf58a3deb903f4ba9590c36eaa16d8fa4a
Author: devozerov <vozerov@...>
Date:   2018-11-28T09:51:32Z

    Minors.

commit 898e82a27dd8a0ec7773eaa5b1e641c12c6c64cd
Author: devozerov <vozerov@...>
Date:   2018-11-28T12:27:55Z

    Implemented.

commit 48601580e0a87bf2c5c759f736fce3543a5e105c
Author: devozerov <vozerov@...>
Date:   2018-11-28T12:29:37Z

    Minors.

commit 8a2a8610a8439b8fedc3271153379d0d57058128
Author: devozerov <vozerov@...>
Date:   2018-11-28T13:55:52Z

    It works.

commit 7749dc7e34ffadfeee43d79e4098fdbe8085ddeb
Author: devozerov <vozerov@...>
Date:   2018-11-28T14:00:15Z

    Removed "exists".

commit 24092fc6828e9246873814431dddfeb142fa1c8c
Author: devozerov <vozerov@...>
Date:   2018-11-28T14:04:01Z

    Minors.

commit d0c2ee7a01bb202315d7c6ffc917b9ffb0d0bfc8
Author: devozerov <vozerov@...>
Date:   2018-11-28T14:07:24Z

    Minors.

----


> Unable to find row by index created on partial baseline topology
> ----------------------------------------------------------------
>
>                 Key: IGNITE-10291
>                 URL: https://issues.apache.org/jira/browse/IGNITE-10291
>             Project: Ignite
>          Issue Type: Bug
>          Components: cache, persistence, sql
>    Affects Versions: 2.4, 2.5, 2.6
>            Reporter: Pavel Vinokurov
>            Assignee: Vladimir Ozerov
>            Priority: Critical
>             Fix For: 2.8
>
>         Attachments: Reproducer.java
>
>
> Steps to reproduce:
> 1. Start two nodes cluster with persistence.
> 2. Create table
> CREATE TABLE PERSON (
>  FIRST_NAME VARCHAR,
>  LAST_NAME VARCHAR,
>  ADDRESS VARCHAR,
>  LANG VARCHAR,
>  BIRTH_DATE TIMESTAMP,
>  CONSTRAINT PK_PESON PRIMARY KEY (FIRST_NAME,LAST_NAME,ADDRESS,LANG)
> ) WITH "key_type=PersonKeyType, CACHE_NAME=PersonCache, 
> value_type=PersonValueType, 
> AFFINITY_KEY=FIRST_NAME,template=PARTITIONED,backups=1"
> Insert 1000 rows.
> 3. Stop the second node.
> 4. Create index
> create index PERSON_FIRST_NAME_IDX on  PERSON(FIRST_NAME)
> 5. Start the second node
> 6. Perform select query for each row:
> select * from PERSON use index(PERSON_FIRST_NAME_IDX) 
> where 
> FIRST_NAME=?
> and LAST_NAME=?
> and ADDRESS=?
> and LANG  = ? 
> Result: The select doesn't return row in half of cases.
> The reproducer is attached.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to