Mikhail Akimov

Results 20 issues of Mikhail Akimov

### What happens? When using `?`-parameters in e.g. `date_part` part argument, group by query fails ### To Reproduce ```py import duckdb conn = duckdb.connect(":memory:") conn.execute("create table test (dt date); insert...

Here's the error: ``` Task exception was never retrieved future: Traceback (most recent call last): File "app.py", line 100, in component_did_mount yield from self.mount_sidebar(executor) File "app.py", line 109, in mount_sidebar...

I'm testing `to_kafka` sink and its throughput is limited by polltime (0.2 sec). Looks like `self.producer.poll(0)` only polls for one message at a time and so only one callback is...

Twin issue of https://github.com/duckdb/duckdb/issues/4314, it was suggested to continue here. # To reproduce ```py import duckdb from sqlalchemy import func, select, create_engine, MetaData, Table # setup conn = duckdb.connect("test.duckdb") conn.execute("create...

Support for executing individual methods (and subtests) inside testify suites. A bit hacky since it relies on naming conventions. - Suites are now detected as namespaces. - To construct the...

alias `diff`? ```sql select revenue, revenue.change() along (Year asc) within (genre) by Year, genre ``` Argument means: change from what? - `-1` (from previous value, default) `revenue.change(-1) along (Year)` -...

engine

```sql select revenue, revenue.sum() along (Year asc) within (genre) by Year, genre ```

engine

Create a `typer` CLI interface with plugins. Entry point `dictum.cli`, commands are attached afterwards. Lazily evaluated if possible (discover when the command is run). Built-in command is `new` for templates....

cli

Same as row_number ```sql select revenue, revenue.index("desc") within (customer_country) by customer_country, genre ```

engine

Right now both valid VL config construction from the metrics and dimensions passed to Altair and resolving the config to query/rendering the config is done by monkeypatching Altair with additional...

visualization