OSDN Git Service

Fixed bug 2330: Wrong error code in case of a duplicate key
authorMichael Meskes <meskes@postgresql.org>
Fri, 17 Mar 2006 15:46:13 +0000 (15:46 +0000)
committerMichael Meskes <meskes@postgresql.org>
Fri, 17 Mar 2006 15:46:13 +0000 (15:46 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ecpglib/error.c

index 0bc5d78..2042647 100644 (file)
@@ -1993,6 +1993,10 @@ Tu Feb  7 18:48:14 CET 2006
 
        - Bit field notation belongs to a variable not a variable list.
        - Output of line number only done by one function.
+
+Fri, 17 Mar 2006 16:38:19 +0100
+
+       - Fixed bug 2330: Wrong error code in case of a duplicate key
        - Set ecpg library version to 5.2.
        - Set ecpg version to 4.2.1.
 
index 582a2cb..df131ff 100644 (file)
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/error.c,v 1.11 2005/10/15 02:49:47 momjian Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/error.c,v 1.12 2006/03/17 15:46:13 meskes Exp $ */
 
 #define POSTGRES_ECPG_INTERNAL
 #include "postgres_fe.h"
@@ -186,7 +186,7 @@ ECPGraise_backend(int line, PGresult *result, PGconn *conn, int compat)
        /* assign SQLCODE for backward compatibility */
        if (strncmp(sqlca->sqlstate, "23505", sizeof(sqlca->sqlstate)) == 0)
                sqlca->sqlcode = INFORMIX_MODE(compat) ? ECPG_INFORMIX_DUPLICATE_KEY : ECPG_DUPLICATE_KEY;
-       if (strncmp(sqlca->sqlstate, "21000", sizeof(sqlca->sqlstate)) == 0)
+       else if (strncmp(sqlca->sqlstate, "21000", sizeof(sqlca->sqlstate)) == 0)
                sqlca->sqlcode = INFORMIX_MODE(compat) ? ECPG_INFORMIX_SUBSELECT_NOT_ONE : ECPG_SUBSELECT_NOT_ONE;
        else
                sqlca->sqlcode = ECPG_PGSQL;