aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExtendedTableInfo.m
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2016-11-01 19:00:30 +0100
committerMax <post@wickenrode.com>2016-11-01 19:00:30 +0100
commitf77f8715cf1bcc8811804008fc5d3ac964988ce1 (patch)
treed1954e726cb160790ba5ceca5f414d03da671e00 /Source/SPExtendedTableInfo.m
parentee5e4db6cf7f35e9802d25bc413aa74221bed371 (diff)
downloadsequelpro-f77f8715cf1bcc8811804008fc5d3ac964988ce1.tar.gz
sequelpro-f77f8715cf1bcc8811804008fc5d3ac964988ce1.tar.bz2
sequelpro-f77f8715cf1bcc8811804008fc5d3ac964988ce1.zip
Some changes suggested in PR #2606 to improve MySQL 5.8 handling
Diffstat (limited to 'Source/SPExtendedTableInfo.m')
-rw-r--r--Source/SPExtendedTableInfo.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPExtendedTableInfo.m b/Source/SPExtendedTableInfo.m
index e2f38a69..df084bf3 100644
--- a/Source/SPExtendedTableInfo.m
+++ b/Source/SPExtendedTableInfo.m
@@ -681,7 +681,7 @@ static NSString *SPMySQLCommentField = @"Comment";
{
NSString *value = [infoDict objectForKey:key];
- if ([value isNSNull]) {
+ if (![value unboxNull]) { // (value == nil || value == [NSNull null])
value = @"";
}
else {