Yohan Wal
Yohan Wal
I came across the same problem with Newsboat 2.33.0. Example feed: http://www.ruanyifeng.com/blog/atom.xml Example article: https://www.ruanyifeng.com/blog/2023/11/weekly-issue-279.html Original HTML format line of text: `一篇老文章,介绍网页<a>标签的target="_blank"...` It may caused by the rich text mode...
> Mutt definitely has some ways to customize that, should check out their solution. I found [here](https://handsomecheung.github.io/mutt-manual-cn/mutt-manual-1.5.19-en.html#header) that mutt uses `ignore` and `unignore` to remove specific headers, and use `hdr_order`...
Thanks for your detailed introduction :) @WenyXu. From my perspective, the logical tables seem to be a view on the physical table with some overlapped columns and some newly added...
> Sorry, I missed something. Could you provide an example to explain the difference? As for the physical table, here I add some constraints for val: ```SQL CREATE TABLE phy...
> **For fuzz tests, let's start with naive cases.** e.g., > > 1. Create a logical table with some random additional columns(e.g., `idc`, `host`) > 2. Validate both logical table...
I've noticed that the existing insert fuzz test for the mito engine has not been activated yet. Are there some works ahead for it? If so, maybe I could solve...
The order of columns of logical table is sorted instead of following the declaration order in create expr, as described in [#3694](https://github.com/GreptimeTeam/greptimedb/issues/3694#issuecomment-2059026217) as an expected behavior. Since the issue has...
> The insert statement includes the columns explicitly; I guess it should work well without any change. Got it. I found that the `omit_column_list` option is generated internally, so I'll...
I'm working on the validator of inserted rows recently and encountered a weird thing. The select query failed after an insertion. Minimal case here: ```SQL CREATE TABLE `Nam`( `NIsi` TIMESTAMP(9)...
> Hi @CookiePieWw , Thanks a lot. I tried on the main branch, and didn't reproduce it. It should be fixed in #3876 Thanks! I forgot to re-compile with the...