| OLD | NEW |
| 1 | 1 |
| 2 This directory contains source code for the SQLite "ICU" extension, an | 2 This directory contains source code for the SQLite "ICU" extension, an |
| 3 integration of the "International Components for Unicode" library with | 3 integration of the "International Components for Unicode" library with |
| 4 SQLite. Documentation follows. | 4 SQLite. Documentation follows. |
| 5 | 5 |
| 6 1. Features | 6 1. Features |
| 7 | 7 |
| 8 1.1 SQL Scalars upper() and lower() | 8 1.1 SQL Scalars upper() and lower() |
| 9 1.2 Unicode Aware LIKE Operator | 9 1.2 Unicode Aware LIKE Operator |
| 10 1.3 ICU Collation Sequences | 10 1.3 ICU Collation Sequences |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 an index has been built is therefore equivalent to database | 160 an index has been built is therefore equivalent to database |
| 161 corruption. The SQLite library is not very well tested under | 161 corruption. The SQLite library is not very well tested under |
| 162 these conditions, and may contain potential buffer overruns | 162 these conditions, and may contain potential buffer overruns |
| 163 or other programming errors that could be exploited by a malicious | 163 or other programming errors that could be exploited by a malicious |
| 164 programmer. | 164 programmer. |
| 165 | 165 |
| 166 If the ICU extension is used in an environment where potentially | 166 If the ICU extension is used in an environment where potentially |
| 167 malicious users may execute arbitrary SQL (i.e. gears), they | 167 malicious users may execute arbitrary SQL (i.e. gears), they |
| 168 should be prevented from invoking the icu_load_collation() function, | 168 should be prevented from invoking the icu_load_collation() function, |
| 169 possibly using the authorisation callback. | 169 possibly using the authorisation callback. |
| OLD | NEW |