You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/fastfunctest/TestAppServerConstraints.java
+5-20
Original file line number
Diff line number
Diff line change
@@ -445,10 +445,7 @@ public void testNegativePointInvalidValue() throws Exception {
Copy file name to clipboardExpand all lines: marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/fastfunctest/TestOpticOnViews.java
+3-6
Original file line number
Diff line number
Diff line change
@@ -2213,10 +2213,7 @@ public void testFromSqlUnionSelectOrderbyLimitOffset() {
2213
2213
.orderBy(op.desc("id"))
2214
2214
.limit(3)
2215
2215
.offset(1)
2216
-
// This is no longer working on MarkLogic 12 nightly. Neither op.col("name") works now op.schemaCol("opticFunctionalTest.detail.name").
2217
-
// We get an error of "Invalid arguments: expression column myName with undefined expression".
2218
-
//.select(p.as("myName", p.col("name")))
2219
-
;
2216
+
.select(op.as("myName", op.col("name")));
2220
2217
2221
2218
JacksonHandlejacksonHandle = newJacksonHandle();
2222
2219
jacksonHandle.setMimetype("application/json");
@@ -2225,8 +2222,8 @@ public void testFromSqlUnionSelectOrderbyLimitOffset() {
Copy file name to clipboardExpand all lines: marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/fastfunctest/datamovement/QueryBatcherJobReportTest.java
+2-16
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,6 @@
37
37
importorg.slf4j.LoggerFactory;
38
38
39
39
importjava.io.File;
40
-
importjava.io.IOException;
41
40
importjava.util.*;
42
41
importjava.util.concurrent.TimeUnit;
43
42
importjava.util.concurrent.atomic.AtomicBoolean;
@@ -189,10 +188,9 @@ public void jobReport() throws Exception {
0 commit comments