deelawn
deelawn
#394 This change allows for a query/connection to be configured to attempt to optimize how rows are counted by counting rows directly instead of counting rows in a derived table.
Currently, a COUNT(*) query is executed after any query that includes pagination. This can be a problem when the table being queried is very large. Due to how the query...
The goal of the below description is to define the date from the following package inside the `events` directory, perhaps in a file named `bounce_class.go`. It should contain the information...
This PR introduces a package for instrumenting the code for metrics collection. The new README details the environment variables that need to be set and includes an example of how...
Relates to #1133 Note: the unit tests are missing from the gnorkle packages. This will not be merged without unit tests. They will be written once the design has been...
closes #1091 This is a simple documentation update to clarify that gno does not support shadowing native types. I've discussed with @jaekwon and this is not something we want to...
## High level overview Addresses #1656. This is meant to bring achieve parity between gno and go's `recover` functionality. The new tests help to ensure this. BREAKING CHANGE: this will...
Fixes #1650 This PR was originally intended to fix the case described in issue #1650, but it soon became apparent that there were other subtle inconsistencies between type assertions in...
A panic occurs when trying to print a pointer to a single byte value using `println`. This can be produced by running: ```go package main func main() { c :=...
Currently when an error is returned from the preprocessor due to an type not correctly implementing an interface, the error message is simply `x does not implement y`. This is...