Ryan Wood
Ryan Wood
I would like to see an option to start a job immediately and then run afterword at a scheduled time. Example: Run immediately, and thereafter every day at 8:00:00 ```...
This PR fixes two recently uploaded issues wherein TVP checking will fail if the value was a slice of pointers and where TVP will not ignore internal fields.
**Describe the bug** A clear and concise description of what the bug is. Any struct with non-public fields that cannot be encoded will cause an error when the value is...
**Describe the bug** Attempting to execute a query with a TVP causes an exception "TVP must be slice type" but the value is a slice. ``` Exception message: TVP must...
This PR addresses an issue where the user wants to embed the `SqlMock` creation code into a function, like so: ``` func createServiceMock(database string, schema string, opts ...sqlmock.SqlMockOption) (*MyDB, sqlmock.Sqlmock)...
When trying to run the following code: ``` def ceil_dt(time: datetime, delta: timedelta) -> datetime: return time + (datetime.min - time) % delta @freezetime("2023-10-17 16:27:59") def test(): ceil_dt(datetime.now(), timedelta(minutes =...
I have a field with an optional `decimal.Decimal` which was causing some [issues](https://github.com/pydantic/pydantic/discussions/7962) with Pydantic. The fix I found was to use `Annotated` to apply constraints to the `decimal.Decimal` instead...
This PR adds support for the `pendulum.Time` object to the library. Note that this change was obnoxious to implement because pendulum does not parse time values uniformly. As an example,...