1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-05 04:30:38 +03:00

Change the default command-line shell history depth to 2000 lines.

FossilOrigin-Name: 0b69aa7e37495f15c3fcc36969b650262b5aa5500fb40800de9a5c56a03f309d
This commit is contained in:
drh
2017-07-18 14:41:44 +00:00
parent b98ca04529
commit 80f134c8aa
3 changed files with 8 additions and 9 deletions

View File

@@ -8375,7 +8375,7 @@ int SQLITE_CDECL wmain(int argc, wchar_t **wargv){
#endif
rc = process_input(&data, 0);
if( zHistory ){
shell_stifle_history(100);
shell_stifle_history(2000);
shell_write_history(zHistory);
free(zHistory);
}