Skip to content

Commit 8406f42

Browse files
committed
JVMCBC-1644: Remove surrounding backticks from namespace in query_context
The backticks are not required, and it is specced in Query RFC without them. Change-Id: I1c3e1d354797b2d3cb7271d3f9d95406b7eb4041 Reviewed-on: https://review.couchbase.org/c/couchbase-jvm-clients/+/227976 Reviewed-by: David Nault <[email protected]> Tested-by: Build Bot <[email protected]> Reviewed-by: <[email protected]>
1 parent 71b4024 commit 8406f42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-io/src/main/java/com/couchbase/client/core/api/query/CoreQueryContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static CoreQueryContext of(String bucket, String scope) {
4545
}
4646

4747
public String format() {
48-
return "`" + namespace + "`:`" + bucket + "`.`" + scope + "`";
48+
return namespace + ":`" + bucket + "`.`" + scope + "`";
4949
}
5050

5151
public String bucket() {

0 commit comments

Comments
 (0)