aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-07 09:57:31 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-07 09:57:31 +0000
commite8bf8bf422b83a55cefd1bdf149f380a822eb880 (patch)
tree6c9b5114ca6be1aebb28e212352599018e4115a7 /Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m
parent1a20cd03f29b0c0ee842008b1445ba54ad23dc69 (diff)
downloadsequelpro-e8bf8bf422b83a55cefd1bdf149f380a822eb880.tar.gz
sequelpro-e8bf8bf422b83a55cefd1bdf149f380a822eb880.tar.bz2
sequelpro-e8bf8bf422b83a55cefd1bdf149f380a822eb880.zip
Remove object quoting and keep track of data type support.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m')
-rw-r--r--Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m4
1 files changed, 1 insertions, 3 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m
index 79951f59..29fcfea6 100644
--- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m
+++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m
@@ -132,9 +132,7 @@ FLXQueryParamData;
for (int i = 0; i < paramData->paramNum; i++)
{
id nativeObject = [values objectAtIndex:i];
-
- NSParameterAssert(nativeObject);
-
+
// Deterime if bound value is an NSNull
if ([nativeObject isKindOfClass:[NSNull class]]) {
paramData->paramValues[i] = NULL;