use 4 spaces replace tab

This commit is contained in:
Lunny Xiao 2013-12-17 17:55:27 +08:00
parent 420faa1e66
commit 286b8725ed
11 changed files with 1221 additions and 1221 deletions

View File

@ -42,8 +42,6 @@ var (
Text = "TEXT"
MediumText = "MEDIUMTEXT"
LongText = "LONGTEXT"
Binary = "BINARY"
VarBinary = "VARBINARY"
Date = "DATE"
DateTime = "DATETIME"
@ -58,6 +56,8 @@ var (
Float = "FLOAT"
Double = "DOUBLE"
Binary = "BINARY"
VarBinary = "VARBINARY"
TinyBlob = "TINYBLOB"
Blob = "BLOB"
MediumBlob = "MEDIUMBLOB"
@ -84,8 +84,6 @@ var (
Text: true,
MediumText: true,
LongText: true,
Binary: true,
VarBinary: true,
Date: true,
DateTime: true,
@ -96,6 +94,8 @@ var (
Decimal: true,
Numeric: true,
Binary: true,
VarBinary: true,
Real: true,
Float: true,
Double: true,

View File

@ -10,7 +10,7 @@ import (
)
const (
version string = "0.2.2"
version string = "0.2.3"
)
func close(engine *Engine) {