mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-20 06:31:32 +03:00
58ccfc9ded
* Type Detector refactor * json driver impl; refactoring of source.Files reader et al * working on kind detector * significant switcheroo of packages * partway throught refactoring Kind * major package switcheroo for Kind
35 lines
1.2 KiB
Go
35 lines
1.2 KiB
Go
package sqlz
|
|
|
|
import (
|
|
"database/sql"
|
|
"reflect"
|
|
"time"
|
|
)
|
|
|
|
// Cached results from reflect.TypeOf for commonly used types.
|
|
var (
|
|
RTypeInt = reflect.TypeOf(0)
|
|
RTypeInt8 = reflect.TypeOf(int8(0))
|
|
RTypeInt16 = reflect.TypeOf(int16(0))
|
|
RTypeInt32 = reflect.TypeOf(int32(0))
|
|
RTypeInt64 = reflect.TypeOf(int64(0))
|
|
RTypeInt64P = reflect.TypeOf((*int64)(nil))
|
|
RTypeNullInt64 = reflect.TypeOf(sql.NullInt64{})
|
|
RTypeFloat32 = reflect.TypeOf(float32(0))
|
|
RTypeFloat64 = reflect.TypeOf(float64(0))
|
|
RTypeFloat64P = reflect.TypeOf((*float64)(nil))
|
|
RTypeNullFloat64 = reflect.TypeOf(sql.NullFloat64{})
|
|
RTypeBool = reflect.TypeOf(true)
|
|
RTypeBoolP = reflect.TypeOf((*bool)(nil))
|
|
RTypeNullBool = reflect.TypeOf(sql.NullBool{})
|
|
RTypeString = reflect.TypeOf("")
|
|
RTypeStringP = reflect.TypeOf((*string)(nil))
|
|
RTypeNullString = reflect.TypeOf(sql.NullString{})
|
|
RTypeTime = reflect.TypeOf(time.Time{})
|
|
RTypeTimeP = reflect.TypeOf((*time.Time)(nil))
|
|
RTypeNullTime = reflect.TypeOf(sql.NullTime{})
|
|
RTypeBytes = reflect.TypeOf([]byte{})
|
|
RTypeBytesP = reflect.TypeOf((*[]byte)(nil))
|
|
RTypeNil = reflect.TypeOf(nil)
|
|
)
|