Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following changes are supported:

AddColumn

Since: liquibase-percona 1.0.0

...

pt-online-schema-change --alter="ADD COLUMN address VARCHAR(255)" ...

CreateIndex

Since: liquibase-percona 1.2.0

...

pt-online-schema-change --alter="ADD UNIQUE INDEX emailIdx (email)" ...

DropColumn

Since: liquibase-percona 1.0.0

...

pt-online-schema-change --alter="DROP COLUMN age" ...

DropIndex

Since: liquibase-percona 1.2.0

...

pt-online-schema-change --alter="DROP INDEX emailIdx" ...

ModifyDataType

Since: liquibase-percona 1.2.0

...

Simply run mvn clean verify. You'll find the jar-file in the target/ subdirectory.

Integration testing

In order to execute the integration tests, run mvn clean verify -Prun-its.

...