Using Branches
Last updated
Last updated
Branches and database revisions allow you to work with your data at any commit in your database's commit graph. This is useful for isolating development on different branches, analyzing historical data, tracking data lineage, and much more.
Unlike other relational databases, Dolt has multiple heads, one for each branch in the database. A head can be a branch, a tag, or a working set. Multiple clients can connect to each branch, and will see other writes to the same branch following the normal SQL transactional isolation semantics (REPEATABLE_READ
). In effect, each branch functions as its own isolated database instance, with changes only visible to other clients connected to the same branch.
A database server has a default branch, which is the checked-out branch at the time the server was started, and can be changed for new connections with a system variable. Using database revision specifiers, clients can choose a specific branch, tag, or commit to pin their queries to.
The exact connection string you need to use will vary depending on your client.
To connect to the default branch, use a connection string with the name of the database only.
mysql://127.0.0.1:3306/mydb
To connect to a different branch, specify that branch name with a slash after the database name:
mysql://127.0.0.1:3306/mydb/feature-branch
To connect to a specific revision of the database, use a commit hash or tag instead of a branch name. The database will be read-only in this case.
mysql://127.0.0.1:3306/mydb/ia1ibijq8hq1llr7u85uivsi5lh3310p
mysql://127.0.0.1:3306/mydb/v1.0
You can also use the same ancestry syntax as Git to reference specific parent commits in a connection string, or anywhere else you would use a database revision specifier. For example, mysql://127.0.0.1:3306/mydb/feature-branch~2
will connect you to a read-only database for the grandparent commit of the feature-branch
branch.
This also works with the standard MySQL command line client:
USE
statementSimilar to the examples above, you can issue USE
statements to select a database revision, too.
USE mydb
switches to the default branch.
To switch to a named branch:
Note that the string must be back-tick quoted, since it contains a /
character.
To switch to a read-only database at a commit hash or tag:
You can also use fully-qualified names with database revisions in your queries. For example, the following query references a specific branch of a database by using a fully-qualified name that includes a revision specification:
You can use the same syntax for specific commits:
and for tags:
DOLT_CHECKOUT()
procedureThe DOLT_CHECKOUT()
SQL procedure provides identical functionality to the dolt checkout
command on the command line, and accepts the same arguments.
CALL DOLT_CHECKOUT('feature-branch');
switches the session to the feature-branch
branch. You can also switch to a new branch, like so:
You can switch to a new branch with a starting commit as well:
The set of branches and their HEAD commits are established at transaction start time. Changes made to the set of branches or their HEAD commits in other transactions will not be visible to this session until a new transaction begins.
The data on a branch is versioned, but the metadata of the branch head itself is not, so if you delete a branch or reset it to point at an older commit, you can't revert or undo that change the same way you can with your data. Instead, you can use the dolt_reflog()
table function to see the history of commits your branch has referenced and either recreate the branch from the last referenced commit with the dolt_branch()
stored procedure or reset the branch to a previous commit with the dolt_reset()
stored procedure. See the dolt_reflog()
table function for an example of recreating a deleted branch and more information on how the Dolt reflog works and what limitations it has.
The server will permit you to modify more than one branch in a single transaction, but will not permit such transactions to be committed. For example, the following sequence of statements will be rejected:
This restriction is true regardless of how you perform the modifications. This sequence also fails.
This restriction will be lifted in a future release of the database. For now you must ROLLBACK
any transaction that modifies more than one branch.
If you use a database name that isn't qualified by a branch or other revision specifier, it still resolves to a particular branch. The rules for this are subtle.
If dolt_checkout()
was called to switch the checked-out branch previously in this session, an unqualified database name will resolve to that branch. dolt_checkout()
has the side-effect of changing what branch an unqualified database name resolves to for the remainder of a session.
Otherwise, an unqualified database name resolves to the default branch, typically main
.
An example:
In the last line, mydb
resolves to mydb/main
because no branch was checked out with dolt_checkout()
in this session.
Using dolt_checkout()
instead of USE
changes this behavior:
In the last line of this example, mydb
resolves to mydb/branch2
, because that was the branch last checked out with dolt_checkout()
.
Note that these name resolution rules apply to all statements that use an unqualified database name, not just USE
. For example, insert into mydb.t1 values (4)
will also modify the last checked-out branch, or the default branch, depending on session history.