Skip to content

Commit 0e575ba

Browse files
committed
WIP
1 parent 1c6728d commit 0e575ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/webview_provider/sqlLineagePanel.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -404,9 +404,8 @@ export class SQLLineagePanel implements Disposable {
404404
.sort((a, b) => a.name.localeCompare(b.name)),
405405
};
406406
}
407-
const tableName = splits[2];
408407
const { nodeMetaMap } = event;
409-
const node = nodeMetaMap.lookupByBaseName(tableName);
408+
const node = nodeMetaMap.lookupByUniqueId(table);
410409
if (!node) {
411410
return;
412411
}

0 commit comments

Comments
 (0)