Lo

Results 8 comments of Lo

I got the same issuse, my system is `Archlinux/Gnome/Xorg/Nvidia 1070`, with all packages updated. But the problem only occurs when the wezterm is maximized. the wezterm version is `20240203-110809-5046fc22`

@zw963 I deleted the config file, got the same problem. But when I restart system, the problem disappeared.

@zw963 oooooops, this problem is back after another system restart. I clone the repo with latest main branch, then compiles/run `./target/debug/wezterm -n`, got the same problem. window's focus is lost...

I found that the initial window area is not focus out when click. After maxizized, click the addition area will got a focus out

> DataFusion supports reading JSON in and some basic things like field access (like json['field_name'] Indexed field access is only valid for `List` or `Struct` types. DataFusion/Arrow does not have...

> A third way could be to parse JSON data into Arrow Structs > One limitation of this approach is that it requires all the JSON records to have the...

> have JSON and BSON be [extension types](https://arrow.apache.org/docs/format/Columnar.html#extension-types), so DataFusion could recognize them via field metadata. I didn't find ways to use extension type in datafusion, do you means add...

Maybe add ExtensionType to Arrow's DataType is more naturely: ```rust trait ExtensionType { fn inner_type(&self) -> &DataType; // .... } enum DataType { Int8, Utf8, // .... Extension(Arc) } impl...