diff --git a/include/sqlpp11/postgresql/result.h b/include/sqlpp11/postgresql/result.h index b9a1d14c..820c00ee 100644 --- a/include/sqlpp11/postgresql/result.h +++ b/include/sqlpp11/postgresql/result.h @@ -250,6 +250,7 @@ namespace sqlpp throw serialization_failure{err, query}; if (strcmp(code, "40P01") == 0) throw deadlock_detected{err, query}; + break; case '2': if (strcmp(code, "42501") == 0) throw insufficient_privilege{err, query};