We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5421ab4 commit 8cc2996Copy full SHA for 8cc2996
tests/objectbox-java-test/src/main/java/io/objectbox/query/QueryTest.java
@@ -28,6 +28,7 @@
28
import io.objectbox.AbstractObjectBoxTest;
29
import io.objectbox.Box;
30
import io.objectbox.BoxStoreBuilder;
31
+import io.objectbox.DebugFlags;
32
import io.objectbox.TestEntity;
33
import io.objectbox.TestEntity_;
34
import io.objectbox.TxCallback;
@@ -40,6 +41,11 @@ public class QueryTest extends AbstractObjectBoxTest {
40
41
42
private Box<TestEntity> box;
43
44
+ @Override
45
+ protected BoxStoreBuilder createBoxStoreBuilder(boolean withIndex) {
46
+ return super.createBoxStoreBuilder(withIndex).debugFlags(DebugFlags.LOG_QUERY_PARAMETERS);
47
+ }
48
+
49
@Before
50
public void setUpBox() {
51
box = getTestEntityBox();
0 commit comments