Hello! Please welcome the newest build of our DataGrip 2019.2 EAP.
Full-text search
The Full-text Search dialog has a nice new look.
The whole mechanism has had several improvements made to it:
– In PostgreSQL, MySQL, and MariaDB you can now switch it to only search in columns that are indexed. To use this mode, choose ‘Only columns with full-text search indexes’ in Search in the drop-down menu.
The query in PostgreSQL will be: `where col @@ plainto_tsquery('query')`
The query in MySQL and mariaDB will be: `where match(col) against ('query' in natural language mode)`
– The search lo