diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/sql.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/sql.h b/src/common/sql.h index 5b318ab4d..898e2c778 100644 --- a/src/common/sql.h +++ b/src/common/sql.h @@ -14,7 +14,10 @@ #define SQL_SUCCESS 0 #define SQL_NO_DATA 100 - +// macro definition to determine whether the mySQL engine is running on InnoDB (rather than MyISAM) +// uncomment this line if the your mySQL tables have been changed to run on InnoDB +// this macro will adjust how logs are recorded in the database to accommodate the change +//#define SQL_INNODB /// Data type identifier. /// String, enum and blob data types need the buffer length specified. |