stensmo

Results 23 comments of stensmo

No, the generator does not run until completion. @Assert ptr_ref[] != C_NULL is triggered (Line 13 in token.jl). I tested this on Cairo_jll as well, and the same issue there....

Sorry for the late reply. A patched version of Clang.jl worked fine. I can submit the (super simple) patch if you want to. The patched version generated (as a test)...

Thanks, while this bug is being worked on, TidierData.jl solves this perfectly using the unnest_wider macro. So far, the macro works on anything I have tested. ``` using DataFrames using...

Proposed solution: Add a keyword argument strict, to the DataFrame constructor (AsTable uses the DataFrame constructor), which is by default false, where conversions are allowed. Allow anything. strict=true would give...

How would you handle this case? ``` a1=Dict("a"=>1, "b"=>Dict("a"=>3, "d"=>2)) a2=Dict("a"=>1, "b"=>Dict("a"=>5)) a=[a1;a2] bug2=transform(bug, :b => Tables.dictrowtable => AsTable) ```

I am not sure you realized the problem, so I made another case. I will stick to the cars example in another bug report: ``` using DataFrames car1=Dict("id"=>"f3eb12eb-3135-4a0b-a2fd-4ccbb981974e", "name"=>"Fiat","engine"=>Dict("id"=>"0e2e1a0d-c7ea-446a-b4c0-6c1fc441bd73", "cylinders"=>4,...

If that was expected, why did you suggest transform(df, :b => Tables.dictrowtable => AsTable)? Name collisions are very common in the real world.

The user may not know that a new column is required. This is especially true whe working with e.g., large nests of data.

The issue: In JavaScript console: Uncaught ReferenceError: Bonito is not defined Chrome: Version 134.0.6998.178 (Official Build) (64-bit)

Further specification of where the error is: ```javascript Bonito.lock_loading( () => { return Bonito.fetch_binary('...', msgs, 'sub', false));' } ) ```