Posted by mrenoch on August 16, 2007 at 7:49pm
Jump to:
| Project: | Fuzzy Search |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
Hi,
The fuzzysearch code handles table prefixes properly (by enclosing table names in curly braces), but the install module is missing the curly braces and does not create the correct table names.
fuzzysearch.install
-db_query("CREATE TABLE search_fuzzy_index (
+db_query("CREATE TABLE {search_index_queue} (
-db_query("CREATE TABLE search_fuzzy_index (
+db_query("CREATE TABLE {search_fuzzy_index} (
small fix, but hopefully this can make it upstream.
thanks
Comments
#1
Wow, slipped by me when I just copy and pasted my mysql export results. Thank you very much and the updated code will be live when the next dev snapshot is released.