Gregory Michael Travis
Gregory Michael Travis
### Checklist Please ensure that the following checklist has been satisfied before submitting the PR: - [x] The documentation has been updated, if necessary. - [x] Screenshots/screencasts have been attached,...
### Pull Request Description Before 3.46, the SQLite parser had a limited stack, which could overflow for certain complex queries. CTE optimizations make some of our queries much smaller, but...
SQLite versions before May 2024 (3.46.0) have a parser stack limitation that might cause us problems when doing large / complex queries. See if the May 2024 version is backwards...
The `Integer` failure comes from the fact that large integers are treated as value type `Decimal` in all backends; the Decimal implementation does not handle `BigIntegerStorage`. The `Float` failure comes...
The `Number.format` and `Decimal.format` methods support a `format` paramter to specify the number format for formatting. `parse` should also allow this.
Warnings attached to the result of `Comparator.compare` do not propagate to the boolean return value of `==`. [Failing Test](https://github.com/enso-org/enso/blob/wip/gmt/10679-failing-test/test/Base_Tests/src/Data/Ordering/Comparator_Spec.enso#L101)
This implements - A response cache for HTTP.{fetch,request} and Data.{read,fetch} and other methods that use those. (Data.download is not cached.) - Per-file request limit - Total cache size limit -...
We want Data.list to be usable as: - A vector, for example for `.map .read` - As a table to display file attributes (size, last modification time) - As an...
Reads a set of files into a table. The result is either one row per table, or the combined contents of all the tables. ``` Data.read_many files:(Vector File) format:File_Format=Auto_Detect include:Vector...
Values for `name_filter` come from `File_Format.name_patterns` ``` Data.list directory:File name_filter:(Text | Vector Text) = [] -> Vector File ``` `File_Format.name_patterns` is a list of extensions and extension groups to each...