Update Example queries for our application authored by Erlend Ydse's avatar Erlend Ydse
......@@ -39,5 +39,8 @@ FROM
Heavy query example from Norvald's Github:
```sql
select sleep(2), st_buffer(point(0,0), 1000, st_buffer_strategy(point_circle, i)) from (values row(1), row(10), row(1000), row(10000), row(50000)) as ints(i);
select sleep(2),
st_buffer(point(0,0), 1000, st_buffer_strategy(point_circle, i))
from (values row(1), row(10), row(1000), row(10000), row(50000))
as ints(i);
```
\ No newline at end of file