mirror of https://github.com/pressly/goose.git
commit
d5d23928d9
|
@ -34,6 +34,7 @@ Examples:
|
|||
goose postgres "user=postgres dbname=postgres sslmode=disable" up
|
||||
goose mysql "user:password@/dbname" down
|
||||
goose sqlite3 ./foo.db status
|
||||
goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" create init sql
|
||||
|
||||
Options:
|
||||
-dir string
|
||||
|
|
|
@ -46,7 +46,7 @@ func main() {
|
|||
driver, dbstring, command := args[0], args[1], args[2]
|
||||
|
||||
switch driver {
|
||||
case "postgres", "mysql", "sqlite3":
|
||||
case "postgres", "mysql", "sqlite3", "redshift":
|
||||
if err := goose.SetDialect(driver); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
@ -60,6 +60,10 @@ func main() {
|
|||
default:
|
||||
}
|
||||
|
||||
if driver == "redshift" {
|
||||
driver = "postgres"
|
||||
}
|
||||
|
||||
db, err := sql.Open(driver, dbstring)
|
||||
if err != nil {
|
||||
log.Fatalf("-dbstring=%q: %v\n", dbstring, err)
|
||||
|
@ -88,7 +92,7 @@ Examples:
|
|||
goose postgres "user=postgres dbname=postgres sslmode=disable" up
|
||||
goose mysql "user:password@/dbname" down
|
||||
goose sqlite3 ./foo.db status
|
||||
goose postgres "user=postgres dbname=postgres sslmode=disable" create init sql
|
||||
goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" create init sql
|
||||
|
||||
Options:
|
||||
`
|
||||
|
|
31
dialect.go
31
dialect.go
|
@ -27,6 +27,8 @@ func SetDialect(d string) error {
|
|||
dialect = &MySqlDialect{}
|
||||
case "sqlite3":
|
||||
dialect = &Sqlite3Dialect{}
|
||||
case "redshift":
|
||||
dialect = &RedshiftDialect{}
|
||||
default:
|
||||
return fmt.Errorf("%q: unknown dialect", d)
|
||||
}
|
||||
|
@ -119,3 +121,32 @@ func (m Sqlite3Dialect) dbVersionQuery(db *sql.DB) (*sql.Rows, error) {
|
|||
|
||||
return rows, err
|
||||
}
|
||||
|
||||
////////////////////////////
|
||||
// Redshift
|
||||
////////////////////////////
|
||||
|
||||
type RedshiftDialect struct{}
|
||||
|
||||
func (rs RedshiftDialect) createVersionTableSql() string {
|
||||
return `CREATE TABLE goose_db_version (
|
||||
id integer NOT NULL identity(1, 1),
|
||||
version_id bigint NOT NULL,
|
||||
is_applied boolean NOT NULL,
|
||||
tstamp timestamp NULL default sysdate,
|
||||
PRIMARY KEY(id)
|
||||
);`
|
||||
}
|
||||
|
||||
func (rs RedshiftDialect) insertVersionSql() string {
|
||||
return "INSERT INTO goose_db_version (version_id, is_applied) VALUES ($1, $2);"
|
||||
}
|
||||
|
||||
func (rs RedshiftDialect) dbVersionQuery(db *sql.DB) (*sql.Rows, error) {
|
||||
rows, err := db.Query("SELECT version_id, is_applied from goose_db_version ORDER BY id DESC")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return rows, err
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ func main() {
|
|||
driver, dbstring, command := args[0], args[1], args[2]
|
||||
|
||||
switch driver {
|
||||
case "postgres", "mysql", "sqlite3":
|
||||
case "postgres", "mysql", "sqlite3", "redshift":
|
||||
if err := goose.SetDialect(driver); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
@ -54,6 +54,10 @@ func main() {
|
|||
default:
|
||||
}
|
||||
|
||||
if driver == "redshift" {
|
||||
driver = "postgres"
|
||||
}
|
||||
|
||||
db, err := sql.Open(driver, dbstring)
|
||||
if err != nil {
|
||||
log.Fatalf("-dbstring=%q: %v\n", dbstring, err)
|
||||
|
@ -77,6 +81,7 @@ Examples:
|
|||
goose postgres "user=postgres dbname=postgres sslmode=disable" up
|
||||
goose mysql "user:password@/dbname" down
|
||||
goose sqlite3 ./foo.db status
|
||||
goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" create init sql
|
||||
|
||||
Options:
|
||||
`
|
||||
|
|
Loading…
Reference in New Issue