File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ func (db *DB) tearDown() {
78
78
case MYSQL , POSTGRESQL :
79
79
db .mustExec ("drop table if exists " + tbl )
80
80
default :
81
- db .Fatal ("unkown dialect" )
81
+ db .Fatal ("unknown dialect" )
82
82
}
83
83
}
84
84
}
@@ -106,7 +106,7 @@ func (db *DB) blobType(size int) string {
106
106
case MYSQL :
107
107
return fmt .Sprintf ("VARBINARY(%d)" , size )
108
108
}
109
- panic ("unkown dialect" )
109
+ panic ("unknown dialect" )
110
110
}
111
111
112
112
func (db * DB ) serialPK () string {
@@ -118,7 +118,7 @@ func (db *DB) serialPK() string {
118
118
case MYSQL :
119
119
return "integer primary key auto_increment"
120
120
}
121
- panic ("unkown dialect" )
121
+ panic ("unknown dialect" )
122
122
}
123
123
124
124
func (db * DB ) now () string {
@@ -130,7 +130,7 @@ func (db *DB) now() string {
130
130
case MYSQL :
131
131
return "now()"
132
132
}
133
- panic ("unkown dialect" )
133
+ panic ("unknown dialect" )
134
134
}
135
135
136
136
func makeBench () {
You can’t perform that action at this time.
0 commit comments