• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1From d97d1d7651ad5b3fc5411145942f06d65be9bcce Mon Sep 17 00:00:00 2001
2From: MartinChoo <214582617@qq.com>
3Date: Wed, 23 Jul 2025 17:43:08 +0800
4Subject: [PATCH 07/12] DatabaseDebugTool
5
6---
7 src/shell.c | 4 ++++
8 1 file changed, 4 insertions(+)
9
10diff --git a/src/shell.c b/src/shell.c
11index 7fb190e..c1948b1 100644
12--- a/src/shell.c
13+++ b/src/shell.c
14@@ -119,6 +119,7 @@ typedef unsigned short int u16;
15 #include <assert.h>
16 #include <math.h>
17 #include "sqlite3.h"
18+#include "sqlite3sym.h"
19 typedef sqlite3_int64 i64;
20 typedef sqlite3_uint64 u64;
21 typedef unsigned char u8;
22@@ -28875,6 +28876,9 @@ int SQLITE_CDECL wmain(int argc, wchar_t **wargv){
23   }
24 #endif
25
26+// The icu analyzer is enabled by default on the client tool.
27+  sqlite3_config(SQLITE_CONFIG_ENABLE_ICU);
28+
29   /* Do an initial pass through the command-line argument to locate
30   ** the name of the database file, the name of the initialization file,
31   ** the size of the alternative malloc heap, options affecting commands
32--
332.47.0.windows.2
34
35