aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authoravenjamin <avenjamin@gmail.com>2009-03-27 13:05:53 +0000
committeravenjamin <avenjamin@gmail.com>2009-03-27 13:05:53 +0000
commit22ee41bd30eb6954492b480484b70a9de9a75374 (patch)
treea975cf62025cd24205bbe2a2b93757116502d225 /Source
parentd28c1f911f532bdb83cd0da2f4f7048c5e029a82 (diff)
downloadsequelpro-22ee41bd30eb6954492b480484b70a9de9a75374.tar.gz
sequelpro-22ee41bd30eb6954492b480484b70a9de9a75374.tar.bz2
sequelpro-22ee41bd30eb6954492b480484b70a9de9a75374.zip
Fixed bug when using the IN filter. removed inclusion of single quotes at start and end
Diffstat (limited to 'Source')
-rw-r--r--Source/TableContent.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m
index 07b7fc9d..2e192d4b 100644
--- a/Source/TableContent.m
+++ b/Source/TableContent.m
@@ -462,7 +462,7 @@
case 4:
compareOperator = @"IN";
doQuote = NO;
- [argument setString:[[@"('" stringByAppendingString:argument] stringByAppendingString:@"')"]];
+ [argument setString:[[@"(" stringByAppendingString:argument] stringByAppendingString:@")"]];
break;
case 5:
compareOperator = @"IS NULL";