CREATE TABLE IF NOT EXISTS tableName (
...
is_active bool,
...
)...
Fails:
$search->filter('is_active', 'equals', true);
$results = $search->get(); // thows exception
Actually works:
$search->filter('is_active', 'equals', 1);
There's nothing mentioned in the documentation.
There's no any TestCase in \Manticoresearch\Test\SearchTest
Fails:
Actually works:
There's nothing mentioned in the documentation.
There's no any TestCase in
\Manticoresearch\Test\SearchTest