Skip to content

Commit

Permalink
Add getJoinTablesUpdate to DbFunctions (missing tests)
Browse files Browse the repository at this point in the history
  • Loading branch information
byjg committed Nov 23, 2024
1 parent 55d1f59 commit d0f6645
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Helpers/DbBaseFunctions.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace ByJG\AnyDataset\Db\Helpers;

use ByJG\AnyDataset\Core\Exception\NotImplementedException;
use ByJG\AnyDataset\Db\DbDriverInterface;
use ByJG\AnyDataset\Db\DbFunctionsInterface;
use ByJG\AnyDataset\Db\IsolationLevelEnum;
Expand Down Expand Up @@ -248,6 +247,9 @@ public function getIsolationLevelCommand(?IsolationLevelEnum $isolationLevel = n

public function getJoinTablesUpdate(array $tables): array
{
throw new NotImplementedException('Method not implemented');
return [
'sql' => '',
'position' => 'before_set'
];
}
}

0 comments on commit d0f6645

Please sign in to comment.