-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extension unaccent: duplication #218
Comments
My memory is quite rusty on this but I believe this may be fixed by tweaking the queries in AND o.oid NOT IN (
SELECT objid FROM pg_depend WHERE deptype = 'e'
AND classid = 'pg_opclass'::regclass) I think similar clauses may have to be added to the |
Not ringing any bells for me. |
I remember pyrseas trying hard to avoid loading any object belonging to an extension, which means that every single query has to be special cased with a clause "and by the way, this shouldn't be fetched because belongs to an extension". A simpler approach would be to load all the objects without caring if it belongs to an extension, and then prune away these objects down the line, and uniformly, replacing each object's dependency for an object into the extension with a dependency on the extension itself. |
Thanks Daniele. Yes, that's part of the reason why I had opened issue #185, but that's a major undertaking. So it seems that the only short term solution is adding yet more special case clauses fo the textsearch queries. |
dbtoyaml
seems to be be producing duplicate data(text search dictionary and template) which are already included in the extension.Can we get a fix for this?
The text was updated successfully, but these errors were encountered: