Skip to content

Commit

Permalink
HSEARCH-3269 Ignore mass-indexing of composite-id entities
Browse files Browse the repository at this point in the history
  • Loading branch information
fax4ever committed Oct 15, 2020
1 parent 9eb609a commit 1b7d372
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

/**
Expand Down Expand Up @@ -80,6 +81,7 @@ public void tearDown() throws Exception {
}

@Test
@Ignore // TODO HSEARCH-4033 Support mass-indexing of composite id entities
public void canHandleIdClass_strategyFull() throws Exception {
Properties props = MassIndexingJob.parameters()
.forEntities( EntityWithIdClass.class )
Expand All @@ -93,6 +95,7 @@ public void canHandleIdClass_strategyFull() throws Exception {
}

@Test
@Ignore // TODO HSEARCH-4033 Support mass-indexing of composite id entities
public void canHandleIdClass_strategyHql() throws Exception {
Properties props = MassIndexingJob.parameters()
.forEntities( EntityWithIdClass.class )
Expand All @@ -108,6 +111,7 @@ public void canHandleIdClass_strategyHql() throws Exception {
}

@Test
@Ignore // TODO HSEARCH-4033 Support mass-indexing of composite id entities
public void canHandleEmbeddedId_strategyFull() throws Exception {
Properties props = MassIndexingJob.parameters()
.forEntities( EntityWithEmbeddedId.class )
Expand All @@ -123,6 +127,7 @@ public void canHandleEmbeddedId_strategyFull() throws Exception {
}

@Test
@Ignore // TODO HSEARCH-4033 Support mass-indexing of composite id entities
public void canHandleEmbeddedId_strategyHql() throws Exception {
Properties props = MassIndexingJob.parameters()
.forEntities( EntityWithEmbeddedId.class )
Expand Down

0 comments on commit 1b7d372

Please sign in to comment.