mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Add journal=MODE to the list of supported URL flags for speedtest1-worker.html.
FossilOrigin-Name: 5c43e8d2ec23f28fdce63874d9d4c8ccbb4a8f81030b19d65ff5711a7c32697e
This commit is contained in:
@ -31,7 +31,7 @@
|
||||
<div id='toolbar-select'>
|
||||
<select id='select-flags' size='10' multiple></select>
|
||||
<div>The following flags can be passed as URL parameters:
|
||||
vfs=NAME, size=N
|
||||
vfs=NAME, size=N, journal=MODE
|
||||
</div>
|
||||
</div>
|
||||
<div class='toolbar-inner-vertical'>
|
||||
@ -183,7 +183,7 @@
|
||||
const getSelectedFlags = ()=>{
|
||||
const f = Array.prototype.map.call(eFlags.selectedOptions, (v)=>v.value);
|
||||
[
|
||||
'size', 'vfs'
|
||||
'size', 'vfs', 'journal'
|
||||
].forEach(function(k){
|
||||
if(urlParams.has(k)) f.push('--'+k, urlParams.get(k));
|
||||
});
|
||||
|
Reference in New Issue
Block a user