From fdb1bd9eb35de71c9bdd520a6810e659c9848a28 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Nieto?= <jose.carlos@menteslibres.net>
Date: Wed, 24 Aug 2016 08:45:21 -0500
Subject: [PATCH] Skip test for other databases than PostgreSQL

---
 internal/sqladapter/testing/adapter.go.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/sqladapter/testing/adapter.go.tpl b/internal/sqladapter/testing/adapter.go.tpl
index 522f8aae..933543a6 100644
--- a/internal/sqladapter/testing/adapter.go.tpl
+++ b/internal/sqladapter/testing/adapter.go.tpl
@@ -1115,7 +1115,7 @@ func TestBatchInsert(t *testing.T) {
 }
 
 func TestBatchInsertReturningKeys(t *testing.T) {
-	if Adapter == "ql" {
+	if Adapter != "postgresql" {
 		t.Skip("Currently not supported.")
 	}
 
-- 
GitLab