From d69be845787ce72661a90166fce22b83e1ed8506 Mon Sep 17 00:00:00 2001 From: Pierre Date: Fri, 16 May 2014 10:23:29 +0200 Subject: [PATCH] fix QuoteField for SqlServerDialect from blank to dbl-quote --- dialect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialect.go b/dialect.go index 579a5aac..7883dc4f 100644 --- a/dialect.go +++ b/dialect.go @@ -486,7 +486,7 @@ func (m SqlServerDialect) InsertAutoIncr(exec SqlExecutor, insertSql string, par } func (d SqlServerDialect) QuoteField(f string) string { - return f + return `"` + f + `"` } func (d SqlServerDialect) QuotedTableForQuery(schema string, table string) string {