aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m')
-rw-r--r--Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m b/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m
index ddd6e745..22394d88 100644
--- a/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m
+++ b/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m
@@ -23,6 +23,7 @@
#import "PGPostgresTypeStringHandler.h"
#import "PGPostgresTypeNumberHandler.h"
#import "PGPostgresTypeDateTimeHandler.h"
+#import "PGPostgresTypeBinaryHandler.h"
#import "PGPostgresException.h"
@implementation PGPostgresConnection (PGPostgresConnectionTypeHandling)
@@ -41,6 +42,7 @@
[self registerTypeHandler:[PGPostgresTypeStringHandler class]];
[self registerTypeHandler:[PGPostgresTypeNumberHandler class]];
[self registerTypeHandler:[PGPostgresTypeDateTimeHandler class]];
+ [self registerTypeHandler:[PGPostgresTypeBinaryHandler class]];
}
/**