File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
solr/core/src/test/org/apache/solr/schema Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -605,6 +605,9 @@ public void query_sortByVectorField_shouldThrowException() throws Exception {
605
605
606
606
@ Test
607
607
public void denseVectorField_shouldBePresentAfterAtomicUpdate () throws Exception {
608
+ assumeTrue (
609
+ "update log must be enabled for atomic update" ,
610
+ Boolean .getBoolean (System .getProperty ("enable.update.log" )));
608
611
try {
609
612
initCore ("solrconfig.xml" , "schema-densevector.xml" );
610
613
SolrInputDocument doc = new SolrInputDocument ();
@@ -641,6 +644,9 @@ public void denseVectorField_shouldBePresentAfterAtomicUpdate() throws Exception
641
644
642
645
@ Test
643
646
public void denseVectorFieldOnAtomicUpdate_shouldBeUpdatedCorrectly () throws Exception {
647
+ assumeTrue (
648
+ "update log must be enabled for atomic update" ,
649
+ Boolean .getBoolean (System .getProperty ("enable.update.log" )));
644
650
try {
645
651
initCore ("solrconfig.xml" , "schema-densevector.xml" );
646
652
SolrInputDocument doc = new SolrInputDocument ();
You can’t perform that action at this time.
0 commit comments