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 58d5ec4 commit df4304eCopy full SHA for df4304e
src/main/java/com/alipay/oceanbase/rpc/get/Get.java
@@ -32,6 +32,14 @@ public class Get {
32
private String[] selectColumns = null;
33
private ObReadConsistency readConsistency = null;
34
35
+ public Get() {
36
+ this.client = null;
37
+ this.tableName = null;
38
+ this.rowKey = null;
39
+ this.selectColumns = null;
40
+ this.readConsistency = null;
41
+ }
42
+
43
public Get(Table client, String tableName) {
44
this.client = client;
45
this.tableName = tableName;
0 commit comments