(t *testing.T)
| 1098 | } |
| 1099 | |
| 1100 | func TestPrimarykeyIDGaussDB(t *testing.T) { |
| 1101 | t.Skipf("This test case skipped, because of gaussdb not support uuid-ossp plugin (SQLSTATE 58P01)") |
| 1102 | if DB.Dialector.Name() != "gaussdb" { |
| 1103 | return |
| 1104 | } |
| 1105 | |
| 1106 | type MissPKLanguage struct { |
| 1107 | ID string `gorm:"type:uuid;default:uuid_generate_v4()"` |
| 1108 | Name string |
| 1109 | } |
| 1110 | |
| 1111 | type MissPKUser struct { |
| 1112 | ID string `gorm:"type:uuid;default:uuid_generate_v4()"` |
| 1113 | MissPKLanguages []MissPKLanguage `gorm:"many2many:miss_pk_user_languages;"` |
| 1114 | } |
| 1115 | |
| 1116 | var err error |
| 1117 | err = DB.Migrator().DropTable(&MissPKUser{}, &MissPKLanguage{}) |
| 1118 | if err != nil { |
| 1119 | t.Fatalf("DropTable err:%v", err) |
| 1120 | } |
| 1121 | // TODO: ERROR: could not open extension control file: No such file or directory (SQLSTATE 58P01) |
| 1122 | DB.Exec(`CREATE EXTENSION IF NOT EXISTS "uuid-ossp";`) |
| 1123 | |
| 1124 | err = DB.AutoMigrate(&MissPKUser{}, &MissPKLanguage{}) |
| 1125 | if err != nil { |
| 1126 | t.Fatalf("AutoMigrate err:%v", err) |
| 1127 | } |
| 1128 | |
| 1129 | // patch |
| 1130 | err = DB.AutoMigrate(&MissPKUser{}, &MissPKLanguage{}) |
| 1131 | if err != nil { |
| 1132 | t.Fatalf("AutoMigrate err:%v", err) |
| 1133 | } |
| 1134 | } |
| 1135 | |
| 1136 | func TestCurrentTimestamp(t *testing.T) { |
| 1137 | if DB.Dialector.Name() != "mysql" { |
nothing calls this directly
no test coverage detected