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 94589be commit 325ca65Copy full SHA for 325ca65
src/main/java/com/trivadis/tvdcc/validators/Hint.xtend
@@ -256,6 +256,7 @@ class Hint extends PLSQLValidator implements PLSQLCopValidator {
256
def private dispatch getTableReference(MergeStatement stmt) {
257
val result = new ArrayList<Pair<String, String>>
258
result.add(new Pair(stmt.intoClause?.table?.value, stmt.intoClause?.alias?.value))
259
+ result.add(new Pair(stmt.usingClause?.table?.value, stmt.usingClause?.alias?.value))
260
return result
261
}
262
0 commit comments