Allow 'explain query plan' with more whitespace, closes #1588

This commit is contained in:
Simon Willison 2022-01-13 12:34:55 -08:00
commit 63537dd3de
2 changed files with 6 additions and 4 deletions

View file

@ -157,7 +157,9 @@ def test_validate_sql_select_bad(bad_sql):
"select '# Hello there\n\n* This is a list\n* of items\n--\n[And a link](https://github.com/simonw/datasette-render-markdown).'\nas demo_markdown",
"select 1 + 1",
"explain select 1 + 1",
"explain\nselect 1 + 1",
"explain query plan select 1 + 1",
"explain query plan\nselect 1 + 1",
"SELECT\nblah FROM foo",
"WITH RECURSIVE cnt(x) AS (SELECT 1 UNION ALL SELECT x+1 FROM cnt LIMIT 10) SELECT x FROM cnt;",
"explain WITH RECURSIVE cnt(x) AS (SELECT 1 UNION ALL SELECT x+1 FROM cnt LIMIT 10) SELECT x FROM cnt;",