本文整理匯總了Golang中code/cloudfoundry/org/bbs/migration.Migration.SetRawSQLDB方法的典型用法代碼示例。如果您正苦於以下問題:Golang Migration.SetRawSQLDB方法的具體用法?Golang Migration.SetRawSQLDB怎麽用?Golang Migration.SetRawSQLDB使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類code/cloudfoundry/org/bbs/migration.Migration
的用法示例。
在下文中一共展示了Migration.SetRawSQLDB方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
initialMigrations = []migration.Migration{
migrations.NewETCDToSQL(),
migrations.NewIncreaseRunInfoColumnSize(),
}
for _, m := range initialMigrations {
m.SetRawSQLDB(rawSQLDB)
m.SetDBFlavor(flavor)
m.SetClock(fakeClock)
err := m.Up(logger)
Expect(err).NotTo(HaveOccurred())
}
// Can't do this in the Describe BeforeEach
// as the test on line 37 will cause ginkgo to panic
mig.SetRawSQLDB(rawSQLDB)
mig.SetDBFlavor(flavor)
})
JustBeforeEach(func() {
migErr = mig.Up(logger)
})
It("does not error out", func() {
Expect(migErr).NotTo(HaveOccurred())
})
It("should add a placement_tags column to desired lrps", func() {
placementTags := []string{"tag-1"}
jsonData, err := json.Marshal(placementTags)
示例2:
It("appends itself to the migration list", func() {
Expect(migrations.Migrations).To(ContainElement(migration))
})
Describe("Version", func() {
It("returns the timestamp from which it was created", func() {
Expect(migration.Version()).To(BeEquivalentTo(1471030898))
})
})
Describe("Up", func() {
BeforeEach(func() {
// Can't do this in the Describe BeforeEach
// as the test on line 37 will cause ginkgo to panic
migration.SetRawSQLDB(rawSQLDB)
migration.SetDBFlavor(flavor)
})
JustBeforeEach(func() {
migrationErr = migration.Up(logger)
})
BeforeEach(func() {
createStatements := []string{
`CREATE TABLE actual_lrps(
net_info TEXT NOT NULL
);`,
`CREATE TABLE tasks(
result TEXT,
task_definition TEXT NOT NULL