From f6aa600c41cf4586b4460eba08ff54397de9a418 Mon Sep 17 00:00:00 2001 From: Miguel Molina Date: Tue, 9 May 2017 10:25:34 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96c8edb..9378f0a 100644 --- a/README.md +++ b/README.md @@ -828,7 +828,7 @@ PASS ok gopkg.in/src-d/go-kallax.v1/benchmarks 40.485s ``` -As we can see on the benchmark, the performance loss is not very much compared to raw `database/sql`, while GORMs performance loss is very big and the memory consumption is way higher. +As we can see on the benchmark, the performance loss is not very much compared to raw `database/sql`, while GORMs performance loss is very big and the memory consumption is way higher. SQLBoiler, on the other hand, has a lower memory footprint than kallax, but a bigger performance loss (though not very significant in most cases). Source code of the benchmarks can be found on the [benchmarks](https://github.com/src-d/go-kallax/tree/master/benchmarks) folder. From 3880b931b80c94d94a0447bd5ab344baeab6067b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Cort=C3=A9s?= Date: Tue, 9 May 2017 18:35:51 +0200 Subject: [PATCH 2/2] remove srcd.works dependency --- generator/common_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/common_test.go b/generator/common_test.go index 0cf04f1..e71d9ec 100644 --- a/generator/common_test.go +++ b/generator/common_test.go @@ -7,7 +7,7 @@ import ( "go/types" "reflect" - parseutil "srcd.works/go-parse-utils.v1" + parseutil "gopkg.in/src-d/go-parse-utils.v1" ) func mkField(name, typ string, fields ...*Field) *Field {