Skip to content

Commit 7d5b54c

Browse files
authored
recover Get default construction function (#413)
1 parent 58d5ec4 commit 7d5b54c

File tree

1 file changed

+8
-0
lines changed
  • src/main/java/com/alipay/oceanbase/rpc/get

1 file changed

+8
-0
lines changed

src/main/java/com/alipay/oceanbase/rpc/get/Get.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ public class Get {
3232
private String[] selectColumns = null;
3333
private ObReadConsistency readConsistency = null;
3434

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+
3543
public Get(Table client, String tableName) {
3644
this.client = client;
3745
this.tableName = tableName;

0 commit comments

Comments
 (0)