aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPServerSupport.m
diff options
context:
space:
mode:
Diffstat (limited to 'Source/SPServerSupport.m')
-rw-r--r--Source/SPServerSupport.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/SPServerSupport.m b/Source/SPServerSupport.m
index c2a139eb..b32a9dc2 100644
--- a/Source/SPServerSupport.m
+++ b/Source/SPServerSupport.m
@@ -55,6 +55,7 @@
@synthesize supportsInformationSchema;
@synthesize supportsSpatialExtensions;
@synthesize supportsShowCharacterSet;
+@synthesize supportsShowCollation;
@synthesize supportsCharacterSetDatabaseVar;
@synthesize supportsPost41CharacterSetHandling;
@synthesize supportsCreateUser;
@@ -137,6 +138,9 @@
// The SHOW CHARACTER SET statement wasn't added until MySQL 4.1.0
supportsShowCharacterSet = [self isEqualToOrGreaterThanMajorVersion:4 minor:1 release:0];
+
+ // The SHOW COLLATION statement wasn't added until MySQL 4.1.0
+ supportsShowCollation = [self isEqualToOrGreaterThanMajorVersion:4 minor:1 release:0];
// The variable 'character_set_database' wasn't added until MySQL 4.1.1
supportsCharacterSetDatabaseVar = [self isEqualToOrGreaterThanMajorVersion:4 minor:1 release:1];
@@ -258,6 +262,7 @@
supportsInformationSchema = NO;
supportsSpatialExtensions = NO;
supportsShowCharacterSet = NO;
+ supportsShowCollation = NO;
supportsCharacterSetDatabaseVar = NO;
supportsPost41CharacterSetHandling = NO;
supportsCreateUser = NO;