DoctrineFullTextPostrgres icon indicating copy to clipboard operation
DoctrineFullTextPostrgres copied to clipboard

A simple to use set of database types, and annotations to use postgresql's full text search engine with doctrine

Results 10 DoctrineFullTextPostrgres issues
Sort by recently updated
recently updated
newest added

tests aren't working yet. The current 'master' branch has a minimum stability of 'dev'. I think before this PR is accepted, perhaps you could drop that line, make sure everything...

Hey, I tried to refactor an application to use Doctrine ORM Attributes, however this leads to an error in TsVectorSubscriber.php line 178 as no _Column_ **Annotation** can be found anymore...

I'd like to get rid of the deprecation errors I'm getting now: ``` 2022-02-10T08:00:55-06:00 [info] User Deprecated: Method "Doctrine\DBAL\Types\Type::canRequireSQLConversion()" might add "bool" as a native return type declaration in the...

enhancement

Let's add actions to check for various versions of PHP, and run unit tests and phpstan. Thoughts?

https://www.postgresql.org/docs/current/ddl-generated-columns.html full text search seems like a perfect use of generated columns, e.g. ALTER TABLE se_details ADD COLUMN ts tsvector GENERATED ALWAYS AS (to_tsvector('english', event_narrative)) STORED; Since the column with...

Hello! I got stuck with error `Invalid argument supplied for foreach()` at this place https://github.com/jaimz22/DoctrineFullTextPostrgres/blob/master/src/Common/TsVectorSubscriber.php#L166. I don't know for what reason a string gets there, and not an array, perhaps...

When call symfony 3.1.4 command `php bin/console doctrine:generate:entities AppBundle:Entity:Project` My project entity does not have tsvector or any fts. It's at another entity, but still return error ``` Generating entities...

https://www.postgresql.org/docs/9.5/static/textsearch-features.html#TEXTSEARCH-UPDATE-TRIGGERS

enhancement

The first tsvector field that contains the field is used: https://github.com/jaimz22/DoctrineFullTextPostrgres/blob/86bca023c972d0f08988c3c912bb6d4c77c400bf/src/ORM/Query/AST/Functions/TSFunction.php#L59-L62 To fix this, we have to allow the user to directly specify the tsvector field to use, instead of...

Did you implement language and weight? if yes, please update the repo, thank you.

enhancement
question