Commit 56cc14ab authored by monty@hundin.mysql.fi's avatar monty@hundin.mysql.fi
Browse files

Added unique error for DEADLOCK

Include missing man pages into binary distribution
parent cf80b8ae
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -46853,6 +46853,9 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.43
@itemize @bullet
@item
Added unique error message when one gets a DEADLOCK during a transaction with
BDB tables.
@item
Fixed problem with @code{BDB} tables and @code{UNIQUE} columns defined
as @code{NULL}.
@item
+4 −0
Original line number Diff line number Diff line
@@ -67,6 +67,10 @@ static HA_ERRORS ha_errlist[]=
  { 143,"Conflicting table definition between MERGE and mapped table"},
  { 144,"Table is crashed and last repair failed"},
  { 145,"Table was marked as crashed and should be repaired"},
  { 146,"Lock timed out; Retry transaction"},
  { 147,"Lock table is full;  Restart program with a larger locktable"},
  { 148,"Updates are not allowed under a read only transactions"},
  { 149,"Lock deadlock; Retry transaction"},
  { 0,NullS },
};

+1 −0
Original line number Diff line number Diff line
@@ -214,6 +214,7 @@ enum ha_base_keytype {
#define HA_ERR_LOCK_WAIT_TIMEOUT 146    
#define HA_ERR_LOCK_TABLE_FULL   147
#define HA_ERR_READ_ONLY_TRANSACTION 148 /* Updates not allowed */
#define HA_ERR_LOCK_DEADLOCK	 149

	/* Other constants */

+3 −0
Original line number Diff line number Diff line
@@ -36,6 +36,9 @@ extern "C" {
  
#ifndef _global_h				/* If not standard header */
#include <sys/types.h>
#ifdef __LCC__
#include <winsock.h>				/* For windows */
#endif
typedef char my_bool;
#if (defined(_WIN32) || defined(_WIN64)) && !defined(__WIN__)
#define __WIN__
+2 −1
Original line number Diff line number Diff line
@@ -213,4 +213,5 @@
#define ER_WRONG_ARGUMENTS 1210
#define ER_NO_PERMISSON_TO_CREATE_USER 1211
#define ER_UNION_TABLES_IN_DIFFERENT_DIR 1212
#define ER_ERROR_MESSAGES 213
#define ER_LOCK_DEADLOCK 1213
#define ER_ERROR_MESSAGES 214
Loading