diff options
author | stuconnolly <stuart02@gmail.com> | 2011-10-09 19:16:55 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-10-09 19:16:55 +0000 |
commit | c8c91195ad32456400fc55377a33d466b6832ab3 (patch) | |
tree | 1c5bc316ae6138d3c396dba8c0583b1beb987e38 /Source/SPServerSupport.h | |
parent | 1fc5d271f03e0dc61605274aa87eb185a21e3f54 (diff) | |
download | sequelpro-c8c91195ad32456400fc55377a33d466b6832ab3.tar.gz sequelpro-c8c91195ad32456400fc55377a33d466b6832ab3.tar.bz2 sequelpro-c8c91195ad32456400fc55377a33d466b6832ab3.zip |
For some reason table creation on MySQL 4.0 servers doesn't like the engine/type being quoted.
Diffstat (limited to 'Source/SPServerSupport.h')
-rw-r--r-- | Source/SPServerSupport.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/SPServerSupport.h b/Source/SPServerSupport.h index bf18a8e8..fd4535a2 100644 --- a/Source/SPServerSupport.h +++ b/Source/SPServerSupport.h @@ -71,6 +71,7 @@ BOOL supportsBlackholeStorageEngine; BOOL supportsArchiveStorageEngine; BOOL supportsCSVStorageEngine; + BOOL supportsQuotingEngineTypeInCreateSyntax; // Triggers BOOL supportsTriggers; @@ -213,6 +214,12 @@ */ @property (readonly) BOOL supportsIndexKeyBlockSize; +/** + * @property supportsQuotingEngineTypeInCreateSyntax Indicates whether the server supports quoting the engine + * type in the create syntax. + */ +@property (readonly) BOOL supportsQuotingEngineTypeInCreateSyntax; + - (id)initWithMajorVersion:(NSInteger)majorVersion minor:(NSInteger)minorVersion release:(NSInteger)releaseVersion; - (void)evaluate; |