Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add upgrade() to Admin API #1204

Merged
merged 5 commits into from
Oct 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply spotless
  • Loading branch information
Torch3333 committed Oct 19, 2023
commit c370cd6f7bad2dcae3c2d979cef74fec52c83493
6 changes: 3 additions & 3 deletions core/src/main/java/com/scalar/db/api/Admin.java
Original file line number Diff line number Diff line change
Expand Up @@ -433,9 +433,9 @@ void addNewColumnToTable(String namespace, String table, String columnName, Data
Set<String> getNamespaceNames() throws ExecutionException;

/**
* Upgrades the ScalarDB environment to support the latest version of the ScalarDB API.
* Typically, you will be requested, as indicated on the release notes, to run this method after
* updating the ScalarDB version of your application environment.
* Upgrades the ScalarDB environment to support the latest version of the ScalarDB API. Typically,
* you will be requested, as indicated on the release notes, to run this method after updating the
* ScalarDB version of your application environment.
*
* @param options options to upgrade
* @throws ExecutionException if the operation fails
Expand Down