Aivars Kalvāns
Aivars Kalvāns
This test case fails: ``` TEST_CASE( "Opt value can start with a dash" ) { std::string name; bool showHelp = false; auto parser = Help( showHelp ) | Opt( name,...
Interpret a single dash as a positional argument which is a common convention for STDIN on Unix. Fixes issue #57
I don't know how good this fits into TokenStream concept but the idea is if we know an argument will follow then advance stream and accept whatever follows without trying...
Implement a new QuerySet.update_returning() that executes a QuerySet.update() and returns modified rows on databases that support UPDATE RETURNING (SQLite, PostgreSQL, Oracle)
Set TCP_NODELAY by default. That is what most libraries do by default as well (HTTP clients and servers, database connections, etc.) This library has high-level buffering through queue.buffering.max.ms, I don't...
For example, getting a value: https://github.com/jazzband/django-constance/blob/6970708e05d769b2e424c4c22790eb2fd778ca88/constance/base.py#L18 Goes to the backend: https://github.com/jazzband/django-constance/blob/6970708e05d769b2e424c4c22790eb2fd778ca88/constance/backends/redisd.py#L36 And there it uses the global Redis connection (self._rd) without locking it. Which probably relates to this setting in...
I'm using Python client tigerbeetle==0.16.64 query_accounts / query_transfers do not return any rows unless `limit` field is explicitly set to a value greater than `0`. I guess it's because `limit`...
I am working on a project where it's required to keep track of multiple limits (balance, daily, monthly, yearly, number of operations) all as a part of a single transaction....
`amount_max` is lowercase in Python client, most of documentation mentions it in upper case (`AMOUNT_MAX`). And I would expect a constant to be uppercase in Python. Similar issue for flags:...