mirror of https://github.com/go-gorm/gorm.git
Fix auto_increment on postgres database.
This commit is contained in:
parent
caa792644c
commit
608fd976c4
|
@ -57,6 +57,18 @@ func TestCreate(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
func TestCreateWithAutoIncrement(t *testing.T) {
|
||||
user1 := User{}
|
||||
user2 := User{}
|
||||
|
||||
DB.Create(&user1)
|
||||
DB.Create(&user2)
|
||||
|
||||
if user2.Sequence-user1.Sequence != 1 {
|
||||
t.Errorf("Auto increment should apply on Sequence")
|
||||
}
|
||||
}
|
||||
|
||||
func TestCreateWithNoGORMPrimayKey(t *testing.T) {
|
||||
if dialect := os.Getenv("GORM_DIALECT"); dialect == "mssql" {
|
||||
t.Skip("Skipping this because MSSQL will return identity only if the table has an Id column")
|
||||
|
|
|
@ -33,6 +33,7 @@ type User struct {
|
|||
Company Company
|
||||
Role
|
||||
PasswordHash []byte
|
||||
Sequence uint `gorm:"AUTO_INCREMENT"`
|
||||
IgnoreMe int64 `sql:"-"`
|
||||
IgnoreStringSlice []string `sql:"-"`
|
||||
Ignored struct{ Name string } `sql:"-"`
|
||||
|
|
|
@ -175,6 +175,10 @@ func (scope *Scope) GetModelStruct() *ModelStruct {
|
|||
field.HasDefaultValue = true
|
||||
}
|
||||
|
||||
if _, ok := field.TagSettings["AUTO_INCREMENT"]; ok {
|
||||
field.HasDefaultValue = true
|
||||
}
|
||||
|
||||
indirectType := fieldStruct.Type
|
||||
for indirectType.Kind() == reflect.Ptr {
|
||||
indirectType = indirectType.Elem()
|
||||
|
|
Loading…
Reference in New Issue