1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Remove the .timer script entry from fiddle app because emscripten has removed getrusage(), which breaks the timer.

FossilOrigin-Name: 9034f19ae50f196cc2b94478edfcc8d765b08bcf383166f6212b3522dea63c01
This commit is contained in:
stephan
2022-08-30 09:51:24 +00:00
parent 5bb5965710
commit 429899ddad
3 changed files with 9 additions and 8 deletions

View File

@ -730,7 +730,8 @@
-- only that part is executed.
-- ================================================
.help`},
{name: "Timer on", sql: ".timer on"},
//{name: "Timer on", sql: ".timer on"},
// ^^^ re-enable if emscripten re-enables getrusage()
{name: "Setup table T", sql:`.nullvalue NULL
CREATE TABLE t(a,b);
INSERT INTO t(a,b) VALUES('abc',123),('def',456),(NULL,789),('ghi',012);