Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Dgraph): update reverse index when updating single UID predicates. #6748

Merged
merged 4 commits into from
Oct 27, 2020

Commits on Oct 16, 2020

  1. fix(Dgraph): update reverse index when updating single UID predicates. (

    #5868)
    
    When updating a single uid predicate with a reverse index, the existing entry in the
    reverse index should be deleted first.
    
    Fixes DGRAPH-1738
    
    (cherry picked from commit 5b70fe8)
    martinmr authored and danielmai committed Oct 16, 2020
    Configuration menu
    Copy the full SHA
    219b04a View commit details
    Browse the repository at this point in the history
  2. Remove context arguments.

    danielmai committed Oct 16, 2020
    Configuration menu
    Copy the full SHA
    d657586 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2020

  1. Optimize computing reverse reindexing (#4755)

    We used to compute reverse count indexes twice while reindexing.
    First, while computing reverse edges, and then later while explicitly
    computing reverse count index. Now, we use a different function
    while reindexing reverse edges and do not compute the reverse
    count indexes there any more.
    mangalaman93 authored and danielmai committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    d377b2f View commit details
    Browse the repository at this point in the history
  2. fix(Dgraph): update reverse index when updating single UID predicates. (

    #5868)
    
    When updating a single uid predicate with a reverse index, the existing entry in the
    reverse index should be deleted first.
    
    Fixes DGRAPH-1738
    martinmr authored and danielmai committed Oct 22, 2020
    Configuration menu
    Copy the full SHA
    38010b5 View commit details
    Browse the repository at this point in the history