adsharma
adsharma
Updated the summary. Please review.
In the last sentence of the description, I address "is it a promotion of a particular library?". It's certainly a promotion of some of the methods I discuss. I'm agnostic...
Would also love to see size in bytes for table storage as well as any indexing data structures. Something equivalent to this query on duckdb. ``` select 'mytable' as table_name,...
``` kuzu> CALL storage_info('node') RETURN SUM(num_values), SUM(num_pages) * 4096 as num_bytes; ┌─────────────────┬───────────┐ │ SUM(num_values) │ num_bytes │ │ INT128 │ INT128 │ ├─────────────────┼───────────┤ │ 222870294 │ 271601664 │ └─────────────────┴───────────┘ kuzu>...
Looks like this is the [CI workflow](https://github.com/duckdb/extension-ci-tools/blob/main/.github/workflows/_extension_distribution.yml) to be dockerized.
There is a potential path now: https://github.com/we-like-parsers/pegen/pull/111 https://github.com/adsharma/python-grammar/blob/match_expr/test2.py
What language were you translating to? The error is coming from [here](https://github.com/py2many/py2many/blob/main/py2many/clike.py#L656). Many languages subclass clike.py and override various `visit_*` methods. Your target language probably hasn't implemented support for `visit_Try`
Think of it as a 2 dimensional matrix: ``` try/except enums stdlib calls .... Rust C++ Go mojo ... ``` Not every language supports every feature. I'd bet that Rust...
Thanks for the repro. What code do you want to see generated? Rust doesn't have the concept of try-catch. One option is [try_blocks](https://doc.rust-lang.org/beta/unstable-book/language-features/try-blocks.html) ``` #![feature(try_blocks)] let result: Result = try...
@KRRT7 Committed some code. Could you please pull and try again?