sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2007 May 7
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
**
|
sl@0
|
13 |
** This file defines various limits of what SQLite can process.
|
sl@0
|
14 |
**
|
sl@0
|
15 |
** @(#) $Id: sqliteLimit.h,v 1.8 2008/03/26 15:56:22 drh Exp $
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
/*
|
sl@0
|
19 |
** The maximum length of a TEXT or BLOB in bytes. This also
|
sl@0
|
20 |
** limits the size of a row in a table or index.
|
sl@0
|
21 |
**
|
sl@0
|
22 |
** The hard limit is the ability of a 32-bit signed integer
|
sl@0
|
23 |
** to count the size: 2^31-1 or 2147483647.
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
#ifndef SQLITE_MAX_LENGTH
|
sl@0
|
26 |
# define SQLITE_MAX_LENGTH 1000000000
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
/*
|
sl@0
|
30 |
** This is the maximum number of
|
sl@0
|
31 |
**
|
sl@0
|
32 |
** * Columns in a table
|
sl@0
|
33 |
** * Columns in an index
|
sl@0
|
34 |
** * Columns in a view
|
sl@0
|
35 |
** * Terms in the SET clause of an UPDATE statement
|
sl@0
|
36 |
** * Terms in the result set of a SELECT statement
|
sl@0
|
37 |
** * Terms in the GROUP BY or ORDER BY clauses of a SELECT statement.
|
sl@0
|
38 |
** * Terms in the VALUES clause of an INSERT statement
|
sl@0
|
39 |
**
|
sl@0
|
40 |
** The hard upper limit here is 32676. Most database people will
|
sl@0
|
41 |
** tell you that in a well-normalized database, you usually should
|
sl@0
|
42 |
** not have more than a dozen or so columns in any table. And if
|
sl@0
|
43 |
** that is the case, there is no point in having more than a few
|
sl@0
|
44 |
** dozen values in any of the other situations described above.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
#ifndef SQLITE_MAX_COLUMN
|
sl@0
|
47 |
# define SQLITE_MAX_COLUMN 2000
|
sl@0
|
48 |
#endif
|
sl@0
|
49 |
|
sl@0
|
50 |
/*
|
sl@0
|
51 |
** The maximum length of a single SQL statement in bytes.
|
sl@0
|
52 |
**
|
sl@0
|
53 |
** It used to be the case that setting this value to zero would
|
sl@0
|
54 |
** turn the limit off. That is no longer true. It is not possible
|
sl@0
|
55 |
** to turn this limit off.
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
#ifndef SQLITE_MAX_SQL_LENGTH
|
sl@0
|
58 |
# define SQLITE_MAX_SQL_LENGTH 1000000000
|
sl@0
|
59 |
#endif
|
sl@0
|
60 |
|
sl@0
|
61 |
/*
|
sl@0
|
62 |
** The maximum depth of an expression tree. This is limited to
|
sl@0
|
63 |
** some extent by SQLITE_MAX_SQL_LENGTH. But sometime you might
|
sl@0
|
64 |
** want to place more severe limits on the complexity of an
|
sl@0
|
65 |
** expression.
|
sl@0
|
66 |
**
|
sl@0
|
67 |
** A value of 0 used to mean that the limit was not enforced.
|
sl@0
|
68 |
** But that is no longer true. The limit is now strictly enforced
|
sl@0
|
69 |
** at all times.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
#ifndef SQLITE_MAX_EXPR_DEPTH
|
sl@0
|
72 |
# define SQLITE_MAX_EXPR_DEPTH 1000
|
sl@0
|
73 |
#endif
|
sl@0
|
74 |
|
sl@0
|
75 |
/*
|
sl@0
|
76 |
** The maximum number of terms in a compound SELECT statement.
|
sl@0
|
77 |
** The code generator for compound SELECT statements does one
|
sl@0
|
78 |
** level of recursion for each term. A stack overflow can result
|
sl@0
|
79 |
** if the number of terms is too large. In practice, most SQL
|
sl@0
|
80 |
** never has more than 3 or 4 terms. Use a value of 0 to disable
|
sl@0
|
81 |
** any limit on the number of terms in a compount SELECT.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
#ifndef SQLITE_MAX_COMPOUND_SELECT
|
sl@0
|
84 |
# define SQLITE_MAX_COMPOUND_SELECT 500
|
sl@0
|
85 |
#endif
|
sl@0
|
86 |
|
sl@0
|
87 |
/*
|
sl@0
|
88 |
** The maximum number of opcodes in a VDBE program.
|
sl@0
|
89 |
** Not currently enforced.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
#ifndef SQLITE_MAX_VDBE_OP
|
sl@0
|
92 |
# define SQLITE_MAX_VDBE_OP 25000
|
sl@0
|
93 |
#endif
|
sl@0
|
94 |
|
sl@0
|
95 |
/*
|
sl@0
|
96 |
** The maximum number of arguments to an SQL function.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
#ifndef SQLITE_MAX_FUNCTION_ARG
|
sl@0
|
99 |
# define SQLITE_MAX_FUNCTION_ARG 100
|
sl@0
|
100 |
#endif
|
sl@0
|
101 |
|
sl@0
|
102 |
/*
|
sl@0
|
103 |
** The maximum number of in-memory pages to use for the main database
|
sl@0
|
104 |
** table and for temporary tables. The SQLITE_DEFAULT_CACHE_SIZE
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
#ifndef SQLITE_DEFAULT_CACHE_SIZE
|
sl@0
|
107 |
# define SQLITE_DEFAULT_CACHE_SIZE 2000
|
sl@0
|
108 |
#endif
|
sl@0
|
109 |
#ifndef SQLITE_DEFAULT_TEMP_CACHE_SIZE
|
sl@0
|
110 |
# define SQLITE_DEFAULT_TEMP_CACHE_SIZE 500
|
sl@0
|
111 |
#endif
|
sl@0
|
112 |
|
sl@0
|
113 |
/*
|
sl@0
|
114 |
** The maximum number of attached databases. This must be between 0
|
sl@0
|
115 |
** and 30. The upper bound on 30 is because a 32-bit integer bitmap
|
sl@0
|
116 |
** is used internally to track attached databases.
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
#ifndef SQLITE_MAX_ATTACHED
|
sl@0
|
119 |
# define SQLITE_MAX_ATTACHED 10
|
sl@0
|
120 |
#endif
|
sl@0
|
121 |
|
sl@0
|
122 |
|
sl@0
|
123 |
/*
|
sl@0
|
124 |
** The maximum value of a ?nnn wildcard that the parser will accept.
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
#ifndef SQLITE_MAX_VARIABLE_NUMBER
|
sl@0
|
127 |
# define SQLITE_MAX_VARIABLE_NUMBER 999
|
sl@0
|
128 |
#endif
|
sl@0
|
129 |
|
sl@0
|
130 |
/* Maximum page size. The upper bound on this value is 32768. This a limit
|
sl@0
|
131 |
** imposed by the necessity of storing the value in a 2-byte unsigned integer
|
sl@0
|
132 |
** and the fact that the page size must be a power of 2.
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
#ifndef SQLITE_MAX_PAGE_SIZE
|
sl@0
|
135 |
# define SQLITE_MAX_PAGE_SIZE 32768
|
sl@0
|
136 |
#endif
|
sl@0
|
137 |
|
sl@0
|
138 |
|
sl@0
|
139 |
/*
|
sl@0
|
140 |
** The default size of a database page.
|
sl@0
|
141 |
*/
|
sl@0
|
142 |
#ifndef SQLITE_DEFAULT_PAGE_SIZE
|
sl@0
|
143 |
# define SQLITE_DEFAULT_PAGE_SIZE 1024
|
sl@0
|
144 |
#endif
|
sl@0
|
145 |
#if SQLITE_DEFAULT_PAGE_SIZE>SQLITE_MAX_PAGE_SIZE
|
sl@0
|
146 |
# undef SQLITE_DEFAULT_PAGE_SIZE
|
sl@0
|
147 |
# define SQLITE_DEFAULT_PAGE_SIZE SQLITE_MAX_PAGE_SIZE
|
sl@0
|
148 |
#endif
|
sl@0
|
149 |
|
sl@0
|
150 |
/*
|
sl@0
|
151 |
** Ordinarily, if no value is explicitly provided, SQLite creates databases
|
sl@0
|
152 |
** with page size SQLITE_DEFAULT_PAGE_SIZE. However, based on certain
|
sl@0
|
153 |
** device characteristics (sector-size and atomic write() support),
|
sl@0
|
154 |
** SQLite may choose a larger value. This constant is the maximum value
|
sl@0
|
155 |
** SQLite will choose on its own.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
#ifndef SQLITE_MAX_DEFAULT_PAGE_SIZE
|
sl@0
|
158 |
# define SQLITE_MAX_DEFAULT_PAGE_SIZE 8192
|
sl@0
|
159 |
#endif
|
sl@0
|
160 |
#if SQLITE_MAX_DEFAULT_PAGE_SIZE>SQLITE_MAX_PAGE_SIZE
|
sl@0
|
161 |
# undef SQLITE_MAX_DEFAULT_PAGE_SIZE
|
sl@0
|
162 |
# define SQLITE_MAX_DEFAULT_PAGE_SIZE SQLITE_MAX_PAGE_SIZE
|
sl@0
|
163 |
#endif
|
sl@0
|
164 |
|
sl@0
|
165 |
|
sl@0
|
166 |
/*
|
sl@0
|
167 |
** Maximum number of pages in one database file.
|
sl@0
|
168 |
**
|
sl@0
|
169 |
** This is really just the default value for the max_page_count pragma.
|
sl@0
|
170 |
** This value can be lowered (or raised) at run-time using that the
|
sl@0
|
171 |
** max_page_count macro.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
#ifndef SQLITE_MAX_PAGE_COUNT
|
sl@0
|
174 |
# define SQLITE_MAX_PAGE_COUNT 1073741823
|
sl@0
|
175 |
#endif
|
sl@0
|
176 |
|
sl@0
|
177 |
/*
|
sl@0
|
178 |
** Maximum length (in bytes) of the pattern in a LIKE or GLOB
|
sl@0
|
179 |
** operator.
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
#ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH
|
sl@0
|
182 |
# define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000
|
sl@0
|
183 |
#endif
|