1 /*
2    Copyright (C) 2004-2006, 2008 MySQL AB, 2008, 2009 Sun Microsystems, Inc.
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 DB_CONFIG_PARAMTERS_H
27 #define DB_CONFIG_PARAMTERS_H
28 
29 #define PRIVATE_BASE          14000
30 
31 #define CFG_ACC_DIR_RANGE     (PRIVATE_BASE +  1)
32 #define CFG_ACC_DIR_ARRAY     (PRIVATE_BASE +  2)
33 #define CFG_ACC_FRAGMENT      (PRIVATE_BASE +  3)
34 #define CFG_ACC_OP_RECS       (PRIVATE_BASE +  4)
35 #define CFG_ACC_OVERFLOW_RECS (PRIVATE_BASE +  5)
36 #define CFG_ACC_PAGE8         (PRIVATE_BASE +  6)
37 #define CFG_ACC_ROOT_FRAG     (PRIVATE_BASE +  7)
38 #define CFG_ACC_TABLE         (PRIVATE_BASE +  8)
39 #define CFG_ACC_SCAN          (PRIVATE_BASE +  9)
40 
41 #define CFG_DICT_ATTRIBUTE    (PRIVATE_BASE + 10)
42 #define CFG_DICT_TABLE        (PRIVATE_BASE + 13)
43 
44 #define CFG_DIH_API_CONNECT   (PRIVATE_BASE + 15)
45 #define CFG_DIH_FRAG_CONNECT  (PRIVATE_BASE + 17)
46 #define CFG_DIH_REPLICAS      (PRIVATE_BASE + 19)
47 #define CFG_DIH_TABLE         (PRIVATE_BASE + 20)
48 
49 #define CFG_LQH_FRAG          (PRIVATE_BASE + 21)
50 #define CFG_LQH_TABLE         (PRIVATE_BASE + 23)
51 #define CFG_LQH_TC_CONNECT    (PRIVATE_BASE + 24)
52 #define CFG_LQH_LOG_FILES     (PRIVATE_BASE + 26)
53 #define CFG_LQH_SCAN          (PRIVATE_BASE + 27)
54 
55 #define CFG_TC_API_CONNECT    (PRIVATE_BASE + 28)
56 #define CFG_TC_TC_CONNECT     (PRIVATE_BASE + 29)
57 #define CFG_TC_TABLE          (PRIVATE_BASE + 30)
58 #define CFG_TC_SCAN           (PRIVATE_BASE + 31)
59 #define CFG_TC_LOCAL_SCAN     (PRIVATE_BASE + 32)
60 
61 #define CFG_TUP_FRAG          (PRIVATE_BASE + 33)
62 #define CFG_TUP_OP_RECS       (PRIVATE_BASE + 34)
63 #define CFG_TUP_PAGE          (PRIVATE_BASE + 35)
64 #define _CFG_TUP_PAGE_RANGE   (PRIVATE_BASE + 36)
65 #define CFG_TUP_TABLE         (PRIVATE_BASE + 37)
66 #define _CFG_TUP_TABLE_DESC   (PRIVATE_BASE + 38)
67 #define CFG_TUP_STORED_PROC   (PRIVATE_BASE + 39)
68 
69 #define CFG_TUX_INDEX         (PRIVATE_BASE + 40)
70 #define CFG_TUX_FRAGMENT      (PRIVATE_BASE + 41)
71 #define CFG_TUX_ATTRIBUTE     (PRIVATE_BASE + 42)
72 #define CFG_TUX_SCAN_OP       (PRIVATE_BASE + 43)
73 
74 #endif
75