Skip to content

Commit

Permalink
Merge pull request #1560 from michalvavrik/feature/fix-narayana-tracing
Browse files Browse the repository at this point in the history
Fix Narayana OTEL operation name in Oracle test used for SELECT query to dual table
  • Loading branch information
mjurc authored Dec 3, 2023
2 parents 2239742 + d321e1e commit 5fb816c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected TransactionExecutor getTransactionExecutorUsedForRecovery() {

@Override
protected String[] getExpectedJdbcOperationNames() {
return new String[] { "SELECT mydb", "INSERT mydb.journal", "UPDATE mydb.account" };
return new String[] { "SELECT mydb.dual", "INSERT mydb.journal", "UPDATE mydb.account" };
}

@Override
Expand Down

0 comments on commit 5fb816c

Please sign in to comment.