This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch opc-fix-fix-fix
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/opc-fix-fix-fix by this push:
new 4cbaf467d40 o
4cbaf467d40 is described below
commit 4cbaf467d407b0857799d13a75f21c721a261299
Author: Caideyipi <[email protected]>
AuthorDate: Tue Mar 24 14:13:47 2026 +0800
o
---
.../iotdb/db/pipe/sink/protocol/opcua/server/OpcUaNameSpace.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaNameSpace.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaNameSpace.java
index 1985a1e5f6b..bf5dd140242 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaNameSpace.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/opcua/server/OpcUaNameSpace.java
@@ -415,13 +415,13 @@ public class OpcUaNameSpace extends
ManagedNamespaceWithLifecycle {
if (isTableModel) {
sourceNameList = new ArrayList<>(tablet.getRowSize());
for (int i = 0; i < tablet.getRowSize(); ++i) {
- final StringBuilder idBuilder = new
StringBuilder(sink.getDatabaseName());
+ final StringBuilder tagBuilder = new
StringBuilder(sink.getDatabaseName());
for (final Object segment : tablet.getDeviceID(i).getSegments()) {
- idBuilder
+ tagBuilder
.append(TsFileConstant.PATH_SEPARATOR)
.append(Objects.isNull(segment) ? sink.getPlaceHolder4NullTag()
: segment);
}
- sourceNameList.add(idBuilder.toString());
+ sourceNameList.add(tagBuilder.toString());
}
}