kaykay-dv / pocketsearch

A simple full-text search library for Python using SQLite and its FTS5 extension
https://pocketsearch.readthedocs.io/en/latest/
MIT License
1 stars 0 forks source link

Prevent unions of different schemas #2

Closed kaykay-dv closed 1 year ago

kaykay-dv commented 1 year ago

Performing a union between different that have different fields does not really make sense. The method should throw an QueryError in this case. Now, the query is allowed and will most likely end in an SQL error.

kaykay-dv commented 1 year ago

This feature is deprecated from 0.9.0 onwards and won't be fixed.