Yuki
Yuki
Windows 7 support ended more than two years ago and I no longer have any windows 7 environments, so I cannot check its behavior. If this problem is dependent on...
Csvq does not intend to use different inputs and outputs for different threads, and specifying them in a goroutine will affect other goroutines as well.
Sorry, I missed this question. Outputs are only intended for logging, so multiple output destinations are not currently available.
It's a bug. Csvq automatically encloses a field when delimiters or enclosures are present in the field data. However, if a field contains newline characters, the field is not enclosed....
I checked the behavior. As you reported, specifying an non-existent column name in a grouping results a fatal error. I also wanted a way to avoid raising errors when specifying...
The [DATETIME](https://mithrandie.github.io/csvq/reference/cast-functions.html#datetime) function and other time related functions convert only some forms of strings by default. If you want to convert other formats, you can specify the format. ``` ADD...
Multiple formats can be added by executing multiple `ADD TO` statements.
My understanding is that the variables assigned within the two added sync.Mutex.Lock regions in the function readRecordSet are assigned only within their respective threads. Can you please explain which variables...
Interactive shell use [https://github.com/chzyer/readline](https://github.com/chzyer/readline). And here is a list of available shortcuts: [https://github.com/chzyer/readline/blob/master/doc/shortcut.md](https://github.com/chzyer/readline/blob/master/doc/shortcut.md) I can't say what I will do about that in the future, since it depends on external...
Now it is possible to do so with [create](https://mithrandie.github.io/csvq/reference/create-table-query.html) and [insert](https://mithrandie.github.io/csvq/reference/insert-query.html) statements. If you do not want to create a file, you can create a [temporary table](https://mithrandie.github.io/csvq/reference/temporary-table.html) instead of using...