diff options
author | rowanbeentje <rowan@beent.je> | 2011-09-22 23:41:48 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2011-09-22 23:41:48 +0000 |
commit | 4c64b79dc24bc1d8e61aff59176c27059bd0313c (patch) | |
tree | fa5c655be1f17008f18eac4c97c2da1b29740949 /Source/SPTableContent.m | |
parent | 549d28e50a35d432531926a6916755dbe26d91c4 (diff) | |
download | sequelpro-4c64b79dc24bc1d8e61aff59176c27059bd0313c.tar.gz sequelpro-4c64b79dc24bc1d8e61aff59176c27059bd0313c.tar.bz2 sequelpro-4c64b79dc24bc1d8e61aff59176c27059bd0313c.zip |
- Fix editing of binary string values, a regression in r3428; addresses log 2665
Diffstat (limited to 'Source/SPTableContent.m')
-rw-r--r-- | Source/SPTableContent.m | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m index 4f12f021..81bc44f6 100644 --- a/Source/SPTableContent.m +++ b/Source/SPTableContent.m @@ -4438,6 +4438,9 @@ if (!useFieldEditor && ![[columnDefinition objectForKey:@"typegrouping"] isEqualToString:@"enum"] && isBlob) useFieldEditor = YES; if (!useFieldEditor) { id cellValue = [tableValues cellDataAtRow:rowIndex column:[[aTableColumn identifier] integerValue]]; + if ([cellValue isKindOfClass:[NSData class]]) { + cellValue = [[[NSString alloc] initWithData:cellValue encoding:[mySQLConnection stringEncoding]] autorelease]; + } if (![cellValue isNSNull] && [[columnDefinition objectForKey:@"typegrouping"] isEqualToString:@"string"] && [cellValue rangeOfCharacterFromSet:[NSCharacterSet newlineCharacterSet] options:NSLiteralSearch].location != NSNotFound) |