aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPServerSupport.m
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2015-04-06 18:23:11 +0200
committerMax <post@wickenrode.com>2015-04-06 18:23:11 +0200
commit8eadd956e7b28695a3204ed2ba695a771a2b8da4 (patch)
tree4a71937e3d2aa5b694fa05e7ad2e88fe347cbf74 /Source/SPServerSupport.m
parent8631b5a61843aa52662946093e8391ead3de5689 (diff)
downloadsequelpro-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.m')
-rw-r--r--Source/SPServerSupport.m3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/SPServerSupport.m b/Source/SPServerSupport.m
index bf74a61e..5537e476 100644
--- a/Source/SPServerSupport.m
+++ b/Source/SPServerSupport.m
@@ -76,6 +76,7 @@
@synthesize serverMajorVersion;
@synthesize serverMinorVersion;
@synthesize serverReleaseVersion;
+@synthesize supportsFulltextOnInnoDB;
#pragma mark -
#pragma mark Initialisation
@@ -198,6 +199,7 @@
// Fractional second support wasn't added until MySQL 5.6.4
supportsFractionalSeconds = [self isEqualToOrGreaterThanMajorVersion:5 minor:6 release:4];
+ supportsFulltextOnInnoDB = supportsFractionalSeconds; //introduced in 5.6.4 too
}
/**
@@ -288,6 +290,7 @@
supportsIndexKeyBlockSize = NO;
supportsQuotingEngineTypeInCreateSyntax = NO;
supportsFractionalSeconds = NO;
+ supportsFulltextOnInnoDB = NO;
}
/**