From d5a20e2358e042a11d3f08daf8665982a623c816 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Wed, 18 Mar 2020 22:34:34 -0700 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1433245dc..adef18add 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -128,7 +128,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `HasSqlType: Database` is now `T: Type` to mirror `Encode` and `Decode` - - `Query::fetch` (returned from `query()`) now returns a new `Cursor` type. `Cursor` is a custom `Stream` type where the + - `Query::fetch` (returned from `query()`) now returns a new `Cursor` type. `Cursor` is a Stream-like type where the item type borrows into the stream (which itself borrows from connection). This means that using `query().fetch()` you can now stream directly from the database with **zero-copy** and **zero-allocation**.