Tomáš Drvoštěp

Results 25 issues of Tomáš Drvoštěp

Hi! We're currently adding `JET.report_package` to our test suite to ensure we didn't introduce any detectable errors to our codebase. But sometimes we encounter errors we're okay with, e.g.: ```julia...

Hi, I'm trying to figure out how to make a custom parser in JuliaDB/TextParse and got stuck for several hours now. My goal is to parse UUIDs into UInt128 (my...

MWE: ```julia julia> a = table((x = 1:10, y = rand(10)), pkey = :x) julia> c = table((x = 1:10,), pkey = :x) julia> join(a, c, how=:inner) ERROR: BoundsError: attempt...

One of the many breaking changes introduced by 1.0 was that Services and RPCs were no longer supported (i.e. no Julia code is generated for Service definitions). Services play a...

For quoted strings, I'd expect that two consecutive quotes represent an empty string (a known value), but I get a missing value instead: ```julia julia> Parsers.xparse(String, "\"\",", 1, 3, Parsers.Options(quoted=true,...

and associated wrapper (sub)types which replace `T` as a first argument passed to parsing functions. These `xxxConf` types are parametrized on `T`, so it remains known at compile time, and...

E.g.: ```proto syntax = \"proto3\"; message ShapeMessage { float shape = 1; repeated ShapeMessage shapeChild = 2; optional float dbtype = 3; } ``` will be translated to: ```julia abstract...

Repo with a MRE: https://github.com/Drvi/MonorepoResolverIssue, the README provides more details. I would expect that vendored packages would not fail to resolve in this situation (since they are failing due to...

bug

Currently, users are expected to provide a new `Options` object when they need to change the default behavior from `Parsers.OPTIONS`. However, the main constructor for `Options` contains default values which...

In #153, we removed JET from tests as it was erroring even with supported Julia versions, and was generally difficult to keep the nightly tests green, as JET relies on...