Chapter 12. Searching and Indexing Content, Page 304

Location on the page: 
implementation of hook_install() for legacysearch.module
Chapter: 
12. Searching and Indexing Content
Error: 

db_query("INSERT INTO technote VALUES ...

Correction: 

db_query("INSERT INTO {technote} VALUES ...

Description of the Error: 

You have to include '{' and '}' brackets, so the database engine can add table prefix (if needed) to the table name.