2019-01-22 15:59:58 +00:00
|
|
|
// Copyright 2017 The Xorm Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-04-07 00:54:02 +00:00
|
|
|
package xorm
|
|
|
|
|
|
|
|
import (
|
2017-01-09 01:52:23 +00:00
|
|
|
"reflect"
|
2016-04-07 00:54:02 +00:00
|
|
|
|
2020-02-24 08:53:18 +00:00
|
|
|
"xorm.io/xorm/schemas"
|
2016-04-07 00:54:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-02-24 08:53:18 +00:00
|
|
|
ptrPkType = reflect.TypeOf(&schemas.PK{})
|
|
|
|
pkType = reflect.TypeOf(schemas.PK{})
|
2016-04-07 00:54:02 +00:00
|
|
|
)
|