mirror of
https://github.com/pressly/goose.git
synced 2025-09-04 19:37:19 +00:00
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
package dialects
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pressly/goose/v3/database/dialect"
|
|
)
|
|
|
|
// Redshift returns a new [dialect.Querier] for Redshift dialect.
|
|
func NewRedshift() dialect.Querier {
|
|
return &redshift{}
|
|
}
|
|
|
|
type redshift struct{}
|
|
|
|
var _ dialect.Querier = (*redshift)(nil)
|
|
|
|
func (r *redshift) CreateTable(tableName string) string {
|
|
q := `CREATE TABLE %s (
|
|
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)
|
|
)`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) InsertVersion(tableName string) string {
|
|
q := `INSERT INTO %s (version_id, is_applied) VALUES ($1, $2)`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) DeleteVersion(tableName string) string {
|
|
q := `DELETE FROM %s WHERE version_id=$1`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) GetMigrationByVersion(tableName string) string {
|
|
q := `SELECT tstamp, is_applied FROM %s WHERE version_id=$1 ORDER BY tstamp DESC LIMIT 1`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) ListMigrations(tableName string) string {
|
|
q := `SELECT version_id, is_applied from %s ORDER BY id DESC`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|
|
|
|
func (r *redshift) GetLatestVersion(tableName string) string {
|
|
q := `SELECT max(version_id) FROM %s`
|
|
return fmt.Sprintf(q, tableName)
|
|
}
|