Skip to content

Commit b4ff7db

Browse files
committed
Fix pool + stan
1 parent de75835 commit b4ff7db

3 files changed

Lines changed: 6 additions & 300 deletions

File tree

src/Database/Adapter/Pool.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,11 @@ public function getSupportForAttributeResizing(): bool
400400
return $this->delegate(__FUNCTION__, \func_get_args());
401401
}
402402

403+
public function getSupportForOperators(): bool
404+
{
405+
return $this->delegate(__FUNCTION__, \func_get_args());
406+
}
407+
403408
public function getSupportForGetConnectionId(): bool
404409
{
405410
return $this->delegate(__FUNCTION__, \func_get_args());

src/Database/Adapter/SQLite.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1717,6 +1717,7 @@ protected function getOperatorSQL(string $column, Operator $operator, int &$bind
17171717
)";
17181718
}
17191719

1720+
// no break
17201721
default:
17211722
return "{$quotedColumn} = {$quotedColumn}";
17221723
}

0 commit comments

Comments
 (0)