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 edaa260 commit 87ad6c0Copy full SHA for 87ad6c0
src/Wrapper/JaegerStatementWrapper.php
@@ -43,7 +43,7 @@ public function executeQuery(array $params = null): Result
43
->addTag(new DbStatementTag($this->cutLongSql($this->sql)));
44
45
try {
46
- return parent::execute($params);
+ return parent::executeQuery($params);
47
} catch (\Exception $e) {
48
$span
49
->addTag(new DbalErrorCodeTag($e->getCode()))
@@ -62,7 +62,7 @@ public function executeStatement($params = null): int
62
63
64
65
+ return parent::executeStatement($params);
66
67
68
0 commit comments