You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by lu...@apache.org on 2022/10/24 14:43:04 UTC

[skywalking-banyandb-java-client] branch fix-method-exposure created (now 0e737fa)

This is an automated email from the ASF dual-hosted git repository.

lujiajing pushed a change to branch fix-method-exposure
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-java-client.git


      at 0e737fa  expose eq for IDQuery

This branch includes the following new commits:

     new 0e737fa  expose eq for IDQuery

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-banyandb-java-client] 01/01: expose eq for IDQuery

Posted by lu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lujiajing pushed a commit to branch fix-method-exposure
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb-java-client.git

commit 0e737fa8e7692c1c610e182a346c77b112bdaf2f
Author: Megrez Lu <lu...@gmail.com>
AuthorDate: Mon Oct 24 22:42:53 2022 +0800

    expose eq for IDQuery
---
 .../org/apache/skywalking/banyandb/v1/client/PairQueryCondition.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/skywalking/banyandb/v1/client/PairQueryCondition.java b/src/main/java/org/apache/skywalking/banyandb/v1/client/PairQueryCondition.java
index 0c71e2c..5a14a64 100644
--- a/src/main/java/org/apache/skywalking/banyandb/v1/client/PairQueryCondition.java
+++ b/src/main/java/org/apache/skywalking/banyandb/v1/client/PairQueryCondition.java
@@ -188,7 +188,7 @@ public abstract class PairQueryCondition<T> extends AbstractCriteria {
          * @param val     value of the tag
          * @return a query that `String == value`
          */
-        static PairQueryCondition<String> eq(String tagName, String val) {
+        public static PairQueryCondition<String> eq(String tagName, String val) {
             return new IDQueryCondition(tagName, BanyandbModel.Condition.BinaryOp.BINARY_OP_EQ, val);
         }
     }