diff options
author | Max <post@wickenrode.com> | 2015-04-06 18:23:11 +0200 |
---|---|---|
committer | Max <post@wickenrode.com> | 2015-04-06 18:23:11 +0200 |
commit | 8eadd956e7b28695a3204ed2ba695a771a2b8da4 (patch) | |
tree | 4a71937e3d2aa5b694fa05e7ad2e88fe347cbf74 /Source/SPServerSupport.h | |
parent | 8631b5a61843aa52662946093e8391ead3de5689 (diff) | |
download | sequelpro-8eadd956e7b28695a3204ed2ba695a771a2b8da4.tar.gz sequelpro-8eadd956e7b28695a3204ed2ba695a771a2b8da4.tar.bz2 sequelpro-8eadd956e7b28695a3204ed2ba695a771a2b8da4.zip |
Add support for FULLTEXT indexes in InnoDB tables
Fixes #1917
Diffstat (limited to 'Source/SPServerSupport.h')
-rw-r--r-- | Source/SPServerSupport.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/SPServerSupport.h b/Source/SPServerSupport.h index e8b8a613..8052ed90 100644 --- a/Source/SPServerSupport.h +++ b/Source/SPServerSupport.h @@ -85,6 +85,7 @@ // Indexes BOOL supportsIndexKeyBlockSize; + BOOL supportsFulltextOnInnoDB; // Events BOOL supportsEvents; @@ -253,6 +254,11 @@ */ @property (readonly) BOOL supportsFractionalSeconds; +/** + * @property supportsFulltextOnInnoDB Indicates whether the server supports FULLTEXT indexes with the InnoDb engine. + */ +@property (readonly) BOOL supportsFulltextOnInnoDB; + - (id)initWithMajorVersion:(NSInteger)majorVersion minor:(NSInteger)minorVersion release:(NSInteger)releaseVersion; - (void)evaluate; |