1 /*
2    Copyright (c) 2004, 2021, Oracle and/or its affiliates.
3     All rights reserved. Use is subject to license terms.
4 
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License, version 2.0,
7    as published by the Free Software Foundation.
8 
9    This program is also distributed with certain software (including
10    but not limited to OpenSSL) that is licensed under separate terms,
11    as designated in a particular file or component or in included license
12    documentation.  The authors of MySQL hereby grant you an additional
13    permission to link the program and your derivative works with the
14    separately licensed software that they have included with MySQL.
15 
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License, version 2.0, for more details.
20 
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
24 */
25 
26 #ifndef NdbBlobImpl_H
27 #define NdbBlobImpl_H
28 
29 class NdbBlobImpl {
30 public:
31   STATIC_CONST( BlobTableNameSize = 40 );
32   // "Invalid blob attributes or invalid blob parts table"
33   STATIC_CONST( ErrTable = 4263 );
34   // "Invalid usage of blob attribute"
35   STATIC_CONST( ErrUsage = 4264 );
36   // "The blob method is not valid in current blob state"
37   STATIC_CONST( ErrState = 4265 );
38   // "Invalid blob seek position"
39   STATIC_CONST( ErrSeek = 4266 );
40   // "Corrupted blob value"
41   STATIC_CONST( ErrCorrupt = 4267 );
42   // "Error in blob head update forced rollback of transaction"
43   STATIC_CONST( ErrAbort = 4268 );
44   // "Unknown blob error"
45   STATIC_CONST( ErrUnknown = 4270 );
46   // "Corrupted main table PK in blob operation"
47   STATIC_CONST( ErrCorruptPK = 4274 );
48   // "The blob method is incompatible with operation type or lock mode"
49   STATIC_CONST( ErrCompat = 4275 );
50 };
51 
52 #endif
53