Skip to content

Commit 611ba15

Browse files
committed
set table name to lower case
1 parent 088b828 commit 611ba15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/alipay/oceanbase/rpc/table/ObTableClientLSBatchOpsImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ public void partitionExecute(ObTableSingleOpResult[] results,
438438
tableLsOp.setLsId(lsId);
439439
tableLsOp.setReturnOneResult(returnOneResult);
440440
tableLsOp.setNeedAllProp(needAllProp);
441-
tableLsOp.setTableName(tableName);
441+
tableLsOp.setTableName(tableName.toLowerCase(Locale.ROOT));
442442
// fetch the following parameters in first entry for routing
443443
long tableId = 0;
444444
long originPartId = 0;

0 commit comments

Comments
 (0)