Max Gabrielsson

Results 162 comments of Max Gabrielsson

I've made progress on this in #4474, you can assign me to this issue @hannes

The issue in __Floating-point validation__ is that the result is parsed back as decimal after the ToString roundtrip. It is not immediately apparent to me how to solve this elegantly......

To help with coordination Im splitting this into multiple issues and will track them on [this project](https://github.com/orgs/duckdb/projects/2/views/1). Please file separate issues if you find any more fuzzing bugs instead of...

Hi! Ive thought about this as well, and even planned to maybe propose this as the subject of my masters thesis (eventually even reach out to CWI for supervision/review?). I...

Although, if we use Structs and Lists to store the actual data, how do we store metadata such as what projection the geometry is in, or precision? Do we include...

This seems to be a commonly requested feature, see: #2429, #1149

> Could this not be achieved by ExtraTypeInfo? > > Similar to how the ENUM type stores which strings are valid for this enum type, wouldnt it be possible to...

Im still processing all the implications of Marks design, but in my head I'm envisioning the internals to look somewhat like a combination of ListVector and StructVector, each "member" has...

Started implementation in #4426

For those that want a quick fix that just works similarly to `web-mode` ```elisp (defun tag-expand () (interactive) (if (and (looking-at "[ \t]*[ \t]*")) (progn (newline-and-indent) (save-excursion (newline-and-indent)) (indent-according-to-mode)) (newline-and-indent)))...