Index: sql/connection.cc |
diff --git a/sql/connection.cc b/sql/connection.cc |
index ea3dacbb6ba025dc248590a40031cc4a508541f4..94a8cc09baab7873153ba6dd4126199708da7f3b 100644 |
--- a/sql/connection.cc |
+++ b/sql/connection.cc |
@@ -50,9 +50,6 @@ bool StatementID::operator<(const StatementID& other) const { |
return strcmp(str_, other.str_) < 0; |
} |
-ErrorDelegate::ErrorDelegate() { |
-} |
- |
ErrorDelegate::~ErrorDelegate() { |
} |
@@ -102,7 +99,8 @@ Connection::Connection() |
exclusive_locking_(false), |
transaction_nesting_(0), |
needs_rollback_(false), |
- in_memory_(false) { |
+ in_memory_(false), |
+ error_delegate_(NULL) { |
} |
Connection::~Connection() { |