mirror of https://github.com/pressly/goose.git
sql_parser: revert to previous up/down state...
...after a "+goose StatementEnd" line is encountered, if we are in a statement block.pull/171/head
parent
a0b467f624
commit
a479445a71
|
@ -174,10 +174,12 @@ func parseSQLMigration(r io.Reader, direction bool) (stmts []string, useTx bool,
|
|||
stmts = append(stmts, buf.String())
|
||||
buf.Reset()
|
||||
verboseInfo("StateMachine: store Up statement")
|
||||
stateMachine.Set(gooseUp)
|
||||
case gooseStatementEndDown:
|
||||
stmts = append(stmts, buf.String())
|
||||
buf.Reset()
|
||||
verboseInfo("StateMachine: store Down statement")
|
||||
stateMachine.Set(gooseDown)
|
||||
}
|
||||
}
|
||||
if err := scanner.Err(); err != nil {
|
||||
|
|
|
@ -51,6 +51,7 @@ func TestSplitStatements(t *testing.T) {
|
|||
{sql: mysqlChangeDelimiter, up: 4, down: 0},
|
||||
{sql: copyFromStdin, up: 1, down: 0},
|
||||
{sql: plpgsqlSyntax, up: 2, down: 2},
|
||||
{sql: plpgsqlSyntaxMixedStatements, up: 2, down: 2},
|
||||
}
|
||||
|
||||
for i, test := range tt {
|
||||
|
@ -319,3 +320,25 @@ DROP TRIGGER update_properties_updated_at
|
|||
DROP FUNCTION update_updated_at_column()
|
||||
-- +goose StatementEnd
|
||||
`
|
||||
|
||||
var plpgsqlSyntaxMixedStatements = `
|
||||
-- +goose Up
|
||||
-- +goose StatementBegin
|
||||
CREATE OR REPLACE FUNCTION update_updated_at_column()
|
||||
RETURNS TRIGGER AS $$
|
||||
BEGIN
|
||||
NEW.updated_at = now();
|
||||
RETURN NEW;
|
||||
END;
|
||||
$$ language 'plpgsql';
|
||||
-- +goose StatementEnd
|
||||
|
||||
CREATE TRIGGER update_properties_updated_at
|
||||
BEFORE UPDATE
|
||||
ON properties
|
||||
FOR EACH ROW EXECUTE PROCEDURE update_updated_at_column();
|
||||
|
||||
-- +goose Down
|
||||
DROP TRIGGER update_properties_updated_at;
|
||||
DROP FUNCTION update_updated_at_column();
|
||||
`
|
||||
|
|
Loading…
Reference in New Issue