Cosmic
                                            Cosmic
                                        
                                    Trying to organize the issues more, so I'll be closing this as a duplicate of #133
As mentioned this issue is occurring because `sd` allows for multi-line regex and `+` is greedy. You can fix this specific case by making the repetition ungreedy with `+?` instead...
Yup, @ewen-lbh is totally right here. The command hangs because it's reading from stdin
This should be resolved now that you can use the `-n` aka `--max-replacements` flag to limit the number of desired replacements
As @jorunfa mentioned you just need to include the newline in the pattern. If you want to support text that uses `\r\n` as well then you can use `\r?\n`
This should be fixed with the next release which should be coming very soon. I'm going to go ahead and close this to keep the issue tracker easier to follow
The current behavior follows the `regex` crate which should generally be our source of truth for these kinds of situations. It's outlined here https://docs.rs/regex/latest/regex/struct.Regex.html#method.replace > ... > > The longest...
> Maybe there's a thread in the regex crate to discuss it. Probably hard to change the upstream now. It dates all the way back to an early regex issue...
Finally got around to handling this. I opted for a hard error when the user passes a capture group name that would be invalid. Here is what the error for...
> I would like to adjust the log levels of full queries to TRACE. Is it possible to make this configurable? https://docs.rs/sqlx/latest/sqlx/trait.ConnectOptions.html#tymethod.log_statements > Furthermore, I propose setting slow queries to...