Files
gocqlx/migrate/export_test.go
Michał Matczuk d25129e2fc migrate: Add support CQL comment callbacks
This patch adds a new migration event type CallComment that it triggered by adding `-- CALL <name>;` comment in a CQL file.

Fixes #101
2020-12-03 13:37:56 +01:00

6 lines
89 B
Go

package migrate
func IsCallback(stmt string) (name string) {
return isCallback(stmt)
}