Version 1.66.2.4 (checked in on 2009/07/10 at 06:09:38 by drumm)
Database interface code for MySQL database servers.
Apparently the inclusion of the code:
Engine=HEAP SELECT
in this file is causing search to fail in MySQL version 3.23.58. See inquiry in forum, http://drupal.org/node/585276 for further details.
Apparently, "Engine=HEAP" is not supported in versions of MySQL prior to 4.1.
Changing the code on line 363 to read "TYPE=HEAP" has corrected the problem and my search is wokring again.
Hopefully, this issue will be brought to the attention of the developers before the next update release...
File Changes Causing Problems in Early MySQL Versions
Apparently the inclusion of the code:
Engine=HEAP SELECTin this file is causing search to fail in MySQL version 3.23.58. See inquiry in forum, http://drupal.org/node/585276 for further details.
Additional Information
Apparently, "Engine=HEAP" is not supported in versions of MySQL prior to 4.1.
Changing the code on line 363 to read "TYPE=HEAP" has corrected the problem and my search is wokring again.
Hopefully, this issue will be brought to the attention of the developers before the next update release...