diff --git a/packages/dolt/content/guides/dolt-tested-apps.md b/packages/dolt/content/guides/dolt-tested-apps.md index 4e8d1ff6..6a341ff9 100644 --- a/packages/dolt/content/guides/dolt-tested-apps.md +++ b/packages/dolt/content/guides/dolt-tested-apps.md @@ -12,7 +12,7 @@ Let us know what else you'd like to see tested by sending us [email](mailto:inte | ORM | Language | Blog | Sample Code | |-------------------------------------------------------------------------------------------|------------|--------------------------------------------------------------------------------|------------------------------------------------------------------------------| | [ASP.NET Core](https://learn.microsoft.com/en-us/aspnet/core/introduction-to-aspnet-core) | C# | [Blog](https://www.dolthub.com/blog/2024-02-28-works-with-dolt-dotnet-webapp/) | [Code](https://github.com/dolthub/dolt-dotnet-webapp-sample) | -| [Diesel](https://www.https://diesel.rs/) | Diesel | [Blog](https://www.dolthub.com/blog/2024-08-30-dolt-diesel-getting-started/) | [Code](https://github.com/dolthub/dolt-diesel-getting-started) | +| [Diesel](https://diesel.rs/) | Rust | [Blog](https://www.dolthub.com/blog/2024-08-30-dolt-diesel-getting-started/) | [Code](https://github.com/dolthub/dolt-diesel-getting-started) | | [Django](https://www.djangoproject.com/) | Python | [Blog](https://www.dolthub.com/blog/2024-01-31-dolt-django/) | [Code](https://github.com/dolthub/dolt_django) | | [Ecto](https://hexdocs.pm/ecto/Ecto.html) | Elixir | [Blog](https://www.dolthub.com/blog/2021-07-16-ecto-dolt/) | [Code](https://github.com/VinaiRachakonda/Ecto-Dolt-Sample) | | [EF Core](https://learn.microsoft.com/en-us/ef/core/) | C# | [Blog](https://www.dolthub.com/blog/2023-12-04-works-with-dolt-efcore/) | [Code](https://github.com/dolthub/efcore-sample) | diff --git a/packages/dolt/content/reference/sql/benchmarks/correctness.md b/packages/dolt/content/reference/sql/benchmarks/correctness.md index 5c896920..59541ca5 100644 --- a/packages/dolt/content/reference/sql/benchmarks/correctness.md +++ b/packages/dolt/content/reference/sql/benchmarks/correctness.md @@ -54,7 +54,7 @@ AND col3 IN (3,9,0))))) OR col4 <= 4.25 OR ((col3 = 5))) OR (((col0 > 0)) AND col0 > 6 AND (col4 >= 6.56))) ``` -Here are Dolt's sqllogictest results for version `1.42.17`. Tests that +Here are Dolt's sqllogictest results for version `1.42.18`. Tests that did not run could not complete due to a timeout earlier in the run. | Results | Count | @@ -74,14 +74,14 @@ We also measure the coverage of the functions in the SQL engine. This is a measure of how many of the supported MySQL functions are also supported by Dolt. -Here are Dolt's function coverage results for version `1.42.5`. +Here are Dolt's function coverage results for version `1.42.18`. | Supported | Total | Percent Coverage | |-----------|-------|------------------| -| 308 | 431 | 71 | +| 310 | 431 | 72 | ## Skipped Engine Tests Here are the total number of tests skipped by the engine for -version `1.42.5`. These are edge cases that we know are failing for +version `1.42.18`. These are edge cases that we know are failing for one reason or another, but haven't been able to fix yet. In general, these tests are more difficult to fix compared to @@ -92,4 +92,4 @@ Additionally, these tests are unique and do not overlap in coverage | Passing | Total | Percent Passing | |---------|-------|-----------------| -| 43607 | 43825 | 99.50 | \ No newline at end of file +| 44211 | 44435 | 99.50 | \ No newline at end of file diff --git a/packages/dolt/content/reference/sql/sql-support/expressions-functions-operators.md b/packages/dolt/content/reference/sql/sql-support/expressions-functions-operators.md index 92dd5d69..d410e07d 100644 --- a/packages/dolt/content/reference/sql/sql-support/expressions-functions-operators.md +++ b/packages/dolt/content/reference/sql/sql-support/expressions-functions-operators.md @@ -54,7 +54,7 @@ title: "Expressions, Functions, and Operators" ## Functions and operators -**Currently supporting 308 of 431 MySQL functions.** +**Currently supporting 310 of 431 MySQL functions.** Most functions are simple to implement. If you need one that isn't implemented, [please file an issue](https://github.com/dolthub/dolt/issues). We can fulfill most requests for new functions within 24 hours. @@ -189,7 +189,7 @@ Most functions are simple to implement. If you need one that isn't implemented, | `HASHOF()` | ✅ | Returns the hash of a reference, e.g. `HASHOF("master")`) | | | `HEX()` | ✅ | | | `HOUR()` | ✅ | | -| `ICU_VERSION()` | ❌ | | +| `ICU_VERSION()` | ✅ | | | `IF()` | ✅ | | | `IFNULL()` | ✅ | | | `IN()` | ✅ | | @@ -295,7 +295,7 @@ Most functions are simple to implement. If you need one that isn't implemented, | `MultiLineString()` | ✅ | | | `MultiPoint()` | ✅ | | | `MultiPolygon()` | ✅ | | -| `NAME_CONST()` | ❌ | | +| `NAME_CONST()` | ✅ | | | `NOT`, `!` | ✅ | | | `NOT BETWEEN ... AND ...` | ✅ | | | `NOT IN()` | ✅ | |