{"datasette": "", "columns": ["addr", "opcode", "p1", "p2", "p3", "p4", "p5", "comment"], "rows": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], "sql": "explain WITH RECURSIVE\r\n xaxis(x) AS (VALUES(-2.0) UNION ALL SELECT x+0.05 FROM xaxis WHERE x<1.2),\r\n yaxis(y) AS (VALUES(-1.0) UNION ALL SELECT y+0.1 FROM yaxis WHERE y<1.0),\r\n m(iter, cx, cy, x, y) AS (\r\n SELECT 0, x, y, 0.0, 0.0 FROM xaxis, yaxis\r\n UNION ALL\r\n SELECT iter+1, cx, cy, x*x-y*y + cx, 2.0*x*y + cy FROM m \r\n WHERE (x*x + y*y) < 4.0 AND iter<28\r\n ),\r\n m2(iter, cx, cy) AS (\r\n SELECT max(iter), cx, cy FROM m GROUP BY cx, cy\r\n ),\r\n a(t) AS (\r\n SELECT group_concat( substr(' .+*#', 1+min(iter/7,4), 1), '') \r\n FROM m2 GROUP BY cy\r\n )\r\nSELECT group_concat(rtrim(t),x'0a') FROM a;", "query_name": null, "database": "fixtures", "table": null, "request": "", "view_name": "table", "1+1": 2}