aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPArrayAdditions.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-09-17 20:06:37 +0000
committerstuconnolly <stuart02@gmail.com>2010-09-17 20:06:37 +0000
commit7dfafb60062fc150f71bba694810cd8d328efd00 (patch)
treed73b3e24ab54b2f93c9b0dfa2b76416015505ad3 /Source/SPArrayAdditions.m
parent263b41b74510f4778fc463c7f6c31fe71e0ee650 (diff)
downloadsequelpro-7dfafb60062fc150f71bba694810cd8d328efd00.tar.gz
sequelpro-7dfafb60062fc150f71bba694810cd8d328efd00.tar.bz2
sequelpro-7dfafb60062fc150f71bba694810cd8d328efd00.zip
New add index sheet, which includes:
- The ability to easily index multiple columns - The ability to specify the storage type (HASH or BTREE) that should be used when available and permitted - The ability to specify a length prefix when indexing a specific column (required on TEXT columns) Requires lots of testing.
Diffstat (limited to 'Source/SPArrayAdditions.m')
-rw-r--r--Source/SPArrayAdditions.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPArrayAdditions.m b/Source/SPArrayAdditions.m
index 6dd9aa30..e7ad01fe 100644
--- a/Source/SPArrayAdditions.m
+++ b/Source/SPArrayAdditions.m
@@ -39,7 +39,7 @@
for (NSString *component in self)
{
if ([result length])
- [result appendString: @","];
+ [result appendString: @", "];
[result appendString:[component backtickQuotedString]];
}