export declare const StaticSql = "\ncreate table __scales (\n component text not null,\n dimension integer not null,\n outputName text not null,\n x text,\n y text,\n z text\n);\n\ncreate table allInputs (\n timestep integer primary key,\n -- DEFAULT (STRFTIME('%Y-%m-%d %H:%M:%f', 'NOW'))\n -- timestamp kept track of in the JS code\n timestamp DATETIME not null,\n inputRelation text not null,\n request_timestep integer\n);\n\ncreate table __perf (\n timestep integer,\n kind text,\n ts integer,\n check(kind = 'start' or kind = 'end'),\n primary key(timestep, kind)\n);\n\ncreate view __perfByStep as\n select\n b.timestep, round(e.ts - b.ts, 2) as total\n from\n (select * from __perf where kind = 'begin') b\n join (select * from __perf where kind = 'end') e\n on b.timestep = e.timestep;\n"; //# sourceMappingURL=staticSql.d.ts.map