Functions
Table of Contents
Informational Functions
ACTIVE_BRANCH()
ACTIVE_BRANCH()
The ACTIVE_BRANCH()
function returns the name of the currently active branch for this session.
DOLT_MERGE_BASE()
DOLT_MERGE_BASE()
DOLT_MERGE_BASE()
returns the hash of the common ancestor between two branches.
Consider the following branch structure:
The following would return the hash of commit E
:
DOLT_HASHOF()
DOLT_HASHOF()
The DOLT_HASHOF()
function returns the commit hash of a branch or other commit spec.
DOLT_HASHOF_TABLE()
DOLT_HASHOF_TABLE()
The DOLT_HASHOF_TABLE()
function returns the value hash of a table. The hash is the hash of all the rows in the table, and is dependent on their serialization format. As such a table could have the same rows, but different hashes if the serialization format has changed, however if a table hash has not changed, then it's guaranteed that the table's data has not changed.
This function can be used to watch for changes in data by storing previous hashes in your application and comparing them to the current hash. For example, you can use this function to get the hash of a table named color
like so:
DOLT_HASHOF_DB()
DOLT_HASHOF_DB()
The DOLT_HASHOF_DB()
function returns the value hash of the entire versioned database. The hash is the hash of all tables (schema and data) in the database, and includes additional versioned items such as stored procedures and triggers. The hash does not include unversioned items such as tables which have been ignored. The function takes an optional argument to specify a branch or one of the values of 'STAGED', 'WORKING', or 'HEAD' (default no argument call is equivalent to 'WORKING').
This function can be used to watch for changes in the database by storing previous hashes in your application and comparing them to the current hash. For example, you can use this function to get the hash of the entire database like so:
It should be noted that if you are connected to branch 'main' and you call dolt_hashof_db('feature')
, the hash may be different than if you were connected to branch 'feature' and called dolt_hashof_db()
. This happens if there exist changes to the working set on branch 'feature' that have not been committed. Calling dolt_hashof_db('feature')
while on 'main' is equivalent to calling dolt_hashof_db('HEAD')
while on branch 'feature'.
The general recommendation when trying to look for changes to the database is to connect to the branch you want to use, then call dolt_hashof_db()
without any arguments. Any change in the hash means that the database has changed.
DOLT_VERSION()
DOLT_VERSION()
The DOLT_VERSION()
function returns the version string for the Dolt binary.
HAS_ANCESTOR()
HAS_ANCESTOR()
The HASH_ANCESTOR(target, ancestor)
function returns a boolean
indicating whether a candidate ancestor
commit is in the commit graph of the target
ref.
Consider the example commit graph from above:
A hypothetical example where we substitute letters for commit hashes would look like:
Table Functions
Table functions operate like regular SQL functions, but instead of returning a single, scalar value, a table function returns rows of data, just like a table. Dolt's table functions have several restrictions in how they can be used in queries. For example, you cannot currently alias a table function or join a table function with another table or table function.
DOLT_DIFF()
DOLT_DIFF()
The DOLT_DIFF()
table function calculates the differences in a table's data at any two commits in the database. Each row in the result set describes how a row in the underlying table has changed between the two commits, including the row's values at to and from commits and the type of change (i.e. added
, modified
, or removed
). DOLT_DIFF()
is an alternative to the dolt_commit_diff_$tablename
system table. You should generally prefer the system tables when possible, since they have less restrictions on use. However, some use cases, such as viewing a table data diff containing schema changes or viewing the three dot diff, can be easier to view with the DOLT_DIFF
table function.
The main difference between the results of the DOLT_DIFF()
table function and the dolt_commit_diff_$tablename
system table is the schema of the returned results. dolt_commit_diff_$tablename
generates the resulting schema based on the table's schema at the currently checked out branch. DOLT_DIFF()
will use the schema at the from_commit
for the from_
columns and the schema at the to_commit
for the to_
columns. This can make it easier to view diffs where the schema of the underlying table has changed.
Note that the DOLT_DIFF()
table function currently requires that argument values be literal values.
Options
The DOLT_DIFF()
table function takes either two or three required arguments:
from_revision
— the revision of the table data for the start of the diff. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~").to_revision
— the revision of the table data for the end of the diff. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~").from_revision..to_revision
— gets the two dot diff, or revision of table data between thefrom_revision
andto_revision
. This is equivalent todolt_diff(<from_revision>, <to_revision>, <tablename>)
.from_revision...to_revision
— gets the three dot diff, or revision of table data between thefrom_revision
andto_revision
, starting at the last common commit.tablename
— the name of the table containing the data to diff.
Schema
The remaining columns are dependent on the schema of the user table as it existed at the from_commit
and at the to_commit
. For every column X
in your table at the from_commit
revision, there is a column in the result set named from_X
. Likewise, for every column Y
in your table at the to_commit
revision, there is a column in the result set named to_Y
. This is the major difference between the DOLT_DIFF()
table function and the dolt_commit_diff_$tablename
system table – DOLT_DIFF()
uses the two schemas at the to_commit
and from_commit
revisions to form the to and from columns of the result set, while dolt_commit_diff_$tablename
uses only the table schema of the currently checked out branch to form the to and from columns of the result set.
Example
Consider a table named inventory
in a database with two branches: main
and feature_branch
. We can use the DOLT_DIFF()
function to calculate a diff of the table data from the main
branch to the feature_branch
branch to see how our data has changed on the feature branch.
Here is the schema of inventory
at the tip of main
:
Here is the schema of inventory
at the tip of feature_branch
:
Based on the schemas at the two revision above, the resulting schema from DOLT_DIFF()
will be:
To calculate the diff and view the results, we run the following query:
The results from DOLT_DIFF()
show how the data has changed going from main
to feature_branch
:
Three dot DOLT_DIFF
Let's say the above database has a commit graph that looks like this:
The example above gets the two dot diff, or differences between two revisions: main
and feature_branch
. dolt_diff('main', 'feature_branch', 'inventory')
(equivalent to dolt_diff('main..feature_branch', 'inventory')
) outputs the difference from F to D (i.e. with effects of E and F).
Three dot diff is useful for showing differences introduced by a feature branch from the point at which it diverged from the main branch. Three dot diff is used to show pull request diffs.
Therefore, dolt_diff('main...feature_branch')
outputs just the differences in feature_branch
(i.e. E and F).
Learn more about two vs three dot diff here.
DOLT_DIFF_STAT()
DOLT_DIFF_STAT()
The DOLT_DIFF_STAT()
table function calculates the data difference stat between any two commits in the database. Schema changes such as creating a new table with no rows, or deleting a table with no rows will return empty result. Each row in the result set describes a diff stat for a single table with statistics information of number of rows unmodified, added, deleted and modified, number of cells added, deleted and modified and total number of rows and cells the table has at each commit.
For keyless tables, this table function only provides the number of added and deleted rows. It returns empty result for tables with no data changes.
Note that the DOLT_DIFF_STAT()
table function currently requires that argument values be literal values.
Privileges
DOLT_DIFF_STAT()
table function requires SELECT
privilege for all tables if no table is defined or for the defined table only.
Options
The DOLT_DIFF_STAT()
table function takes three arguments:
from_revision
— the revision of the table data for the start of the diff. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").to_revision
— the revision of the table data for the end of the diff. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").from_revision..to_revision
— gets the two dot diff stat, or revision of table data between thefrom_revision
andto_revision
. This is equivalent todolt_diff_stat(<from_revision>, <to_revision>, <tablename>)
.from_revision...to_revision
— gets the three dot diff stat, or revision of table data between thefrom_revision
andto_revision
, starting at the last common commit.tablename
— the name of the table containing the data to diff. This argument is optional. When it's not defined, all tables with data diff will be returned.
Schema
Example
Consider we start with a table inventory
in a database on main
branch. When we make any changes, we can use the DOLT_DIFF_STAT()
function to calculate a diff of the table data or all tables with data changes across specific commits.
Here is the schema of inventory
at the tip of main
:
Here is what table inventory
has at the tip of main
:
We perform some changes to the inventory
table and create new keyless table:
Here is what table inventory
has in the current working set:
To calculate the diff and view the results, we run the following query:
The results from DOLT_DIFF_STAT()
show how the data has changed going from tip of main
to our current working set:
To get a table specific changes going from the current working set to tip of main
, we run the following query:
With result of single row:
DOLT_DIFF_SUMMARY()
DOLT_DIFF_SUMMARY()
The DOLT_DIFF_SUMMARY()
table function is a summary of what tables changed and how between any two commits in the database. Only changed tables will be listed in the result, along with the diff type ('added', 'dropped', 'modified', 'renamed') and whether there are data and schema changes.
It returns empty result if there are no tables with changes.
Note that the DOLT_DIFF()
table function currently requires that argument values be literal values.
Privileges
DOLT_DIFF_SUMMARY()
table function requires SELECT
privilege for all tables if no table is defined or for the defined table only.
Options
The DOLT_DIFF_SUMMARY()
table function takes three arguments:
from_revision
— the revision of the table data for the start of the diff. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").to_revision
— the revision of the table data for the end of the diff. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").from_revision..to_revision
— gets the two dot diff summary, or revision of table data between thefrom_revision
andto_revision
. This is equivalent todolt_diff_summary(<from_revision>, <to_revision>, <tablename>)
.from_revision...to_revision
— gets the three dot diff summary, or revision of table data between thefrom_revision
andto_revision
, starting at the last common commit.tablename
— the name of the table containing the data to diff. This argument is optional. When it's not defined, all tables with data diff will be returned.
Schema
Example
Consider we start with a table inventory
in a database on main
branch. When we make any changes, we can use the DOLT_DIFF_SUMMARY()
function to calculate a diff of the table data or all tables with data changes across specific commits.
Here is the schema of inventory
at the tip of main
:
Here is what table inventory
has at the tip of main
:
We perform some changes to the inventory
table and create new keyless table:
Here is what table inventory
has in the current working set:
To calculate the diff and view the results, we run the following query:
The results from DOLT_DIFF_SUMMARY()
show how the data has changed going from tip of main
to our current working set:
To get a table specific changes going from the current working set to tip of main
, we run the following query:
With result of single row:
DOLT_LOG()
DOLT_LOG()
The DOLT_LOG
table function gets the commit log for all commits reachable from the provided revision's HEAD
(or the current HEAD
if no revision is provided).
Note that the DOLT_LOG()
table function currently requires that argument values be literal values.
Privileges
DOLT_LOG()
table function requires SELECT
privilege for all tables.
Options
The DOLT_LOG()
table function takes any number of optional revision arguments:
optional_revision
: a branch name, tag, or commit ref (with or without an ancestor spec) that specifies which ancestor commits to include in the results. If no revisions are specified, the default is the current branchHEAD
.If you'd like to get two dot logs (all commits reachable by
revision2
, but NOT reachable byrevision1
), you can use..
between revisions (DOLT_LOG('revision1..revision2')
) or^
in front of the revision you'd like to exclude (DOLT_LOG('revision2', '^revision1')
). Note: if providing two revisions, one must contain^
.If you'd like to get three dot logs (all commits reachable by
revision1
orrevision2
, excluding commits reachable by BOTHrevision1
ANDrevision2
), you can use...
between revisions (DOLT_LOG('revision1...revision2')
).
--min-parents
: The minimum number of parents a commit must have to be included in the log.--merges
: Equivalent to min-parents == 2, this will limit the log to commits with 2 or more parents.--parents
: Shows all parents of each commit in the log.--decorate
: Shows refs next to commits. Valid options are short, full, no, and auto. Defaults to "no".--not
: Excludes commits reachable by revision.--tables
: Limits the log to commits that affect the specified tables. Any number of comma separated tables can be specified.
Schema
Example
Consider we have the following commit graph:
To get the commit log for the main
branch, we can use the query:
And it would return commits in reverse-chronological order - D
,C
, B
, and A
. The output will look something like:
To get the commit log for the feature
branch, we can change the revision in the above query:
And it would return all commits reachable from the HEAD
of feature
- F
, E
, C
, B
, and A
.
Two and three dot log
We also support two and three dot log. Two dot log returns commits from a revision, excluding commits from another revision. If we want all commits in feature
, excluding commits from main
, all of these queries will return commits F
and E
.
Three dot log returns commits in either revision, excluding commits in BOTH revisions. If we want commits in main
OR feature
, excluding commits in main
AND feature
, this query would return commits F
, E
, and D
.
Note: The order of revisions in two dot log matters, but not for three dot log. DOLT_LOG('main..feature')
returns F
and E
, while DOLT_LOG('feature..main')
returns just D
. DOLT_LOG('main...feature')
and DOLT_LOG('feature...main')
both return F
, E
, and D
.
Learn more about two vs three dot log here.
DOLT_PATCH()
DOLT_PATCH()
Generate the SQL statements needed to patch a table (or all tables) from a starting revision to a target revision. This can be useful when you want to import data into Dolt from an external source, compare differences, and generate the SQL statements needed to patch the original source. Both schema and/or data diff statements are returned if applicable. Some data diff cannot be produced from incompatible schema changes; these are shown as warnings containing which table this occurred on.
The order of the statements is that the schema patch comes first after the data patch. If patching all tables, then we recommend to turn off the foreign key checks (SET foreign_key_checks=0;
) before applying these patch statements in order to avoid conflicts.
Privileges
DOLT_PATCH()
table function requires SELECT
privilege for all tables if no table is defined or for the defined table only.
Options
The DOLT_PATCH()
table function takes the following arguments:
from_revision
— the revision of the table data for the start of the patch. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").to_revision
— the revision of the table data for the end of the patch. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").from_revision..to_revision
— gets the two dot patch, or revision of table data between thefrom_revision
andto_revision
. This is equivalent todolt_patch(<from_revision>, <to_revision>, <tablename>)
.from_revision...to_revision
— gets the three dot patch, or revision of table data between thefrom_revision
andto_revision
, starting at the last common commit.tablename
— the name of the table containing the data and/or schema to patch. This argument is optional. When it's not defined, all tables with data and/or schema patch will be returned.
Schema
Example
Consider we start with a table inventory
in a database on main
branch. When we make any changes, we can use the DOLT_PATCH()
function to get SQL patch statements of the table data or all tables with data changes across specific commits.
Here is the schema of inventory
at the tip of main
:
Here is what table inventory
has at the tip of main
:
We perform some changes to the inventory
table and create new keyless table:
Here is what table inventory
has in the current working set:
To get SQL patch statements, we run the following query:
The results from DOLT_PATCH()
show how the data has changed going from tip of main
to our current working set:
To get a table specific schema patch going from the current working set to tip of main
, we run the following query:
With result of single row:
DOLT_REFLOG()
DOLT_REFLOG()
The DOLT_REFLOG()
table function shows the history of named refs (e.g. branches and tags), which is useful when you want to understand how a branch or tag has changed over time to reference different commits, particularly for information that isn't surfaced through the dolt_log
system table or dolt_log()
table function. For example, if you use dolt_reset()
to change the commit a branch points to, you can use dolt_reflog()
to see what commit the branch was pointing to before it was moved to that commit. Another common use case for dolt_reflog()
is to recreate a branch or tag that was accidentally deleted. The example section below shows how to recreate a deleted branch.
The data from Dolt's reflog comes from Dolt's journaling chunk store. This data is local to a Dolt database and never included when pushing, pulling, or cloning a Dolt database. This means when you clone a Dolt database, it will not have any reflog data until you perform operations that change what commit branches or tags reference.
Dolt's reflog is similar to Git's reflog, but there are a few differences:
The Dolt reflog currently only supports named references, such as branches and tags, and not any of Git's special refs (e.g.
HEAD
,FETCH-HEAD
,MERGE-HEAD
).The Dolt reflog can be queried for the log of references, even after a reference has been deleted. In Git, once a branch or tag is deleted, the reflog for that ref is also deleted and to find the last commit a branch or tag pointed to you have to use Git's special
HEAD
reflog to find the commit, which can sometimes be challenging. Dolt makes this much easier by allowing you to see the history for a deleted ref so you can easily see the last commit a branch or tag pointed to before it was deleted.
Privileges
There are no special privileges required to use the dolt_reflog()
table function.
Options
The dolt_reflog()
table function can be called with no arguments or with one argument. If called without any arguments, it will return the full reference log, which lists changes from newest to oldest for all tracked references. If called with one argument, that argument is the name of a ref to query. This can be the name of a branch (e.g. "myBranch") or the name of a tag (e.g. "v1.1.4") or it can be the fully qualified ref path (e.g. "refs/heads/myBranch"). The ref_name
parameter is case-insensitive.
The dolt_reflog()
table function can also be called with the --all
flag to show all refs, including hidden refs, such as DoltHub workspace refs.
Schema
Example
The example below shows how to recreate a branch that was deleted by finding the last commit it referenced in Dolt's reflog.
DOLT_SCHEMA_DIFF()
DOLT_SCHEMA_DIFF()
The DOLT_SCHEMA_DIFF()
table function calculates the schema difference between any two commits in the database. Each row in the result set describes how a table was altered between the two commits, including the table's create statement at to and from commits.
Note that the DOLT_SCHEMA_DIFF()
table function currently requires that argument values be literal values.
Privileges
DOLT_SCHEMA_DIFF()
table function requires SELECT
privilege for all tables if no table is defined or for the defined table only.
Options
The DOLT_SCHEMA_DIFF()
table function takes three arguments:
from_revision
— the revision of the table data for the start of the diff. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").to_revision
— the revision of the table data for the end of the diff. This argument is required. This may be a commit, tag, branch name, or other revision specifier (e.g. "main~", "WORKING", "STAGED").from_revision..to_revision
— gets the two dot diff, or revision of table schema between thefrom_revision
andto_revision
. This is equivalent todolt_schema_diff(<from_revision>, <to_revision>, [<tablename>])
.from_revision...to_revision
— gets the three dot diff, or revision of table schema between thefrom_revision
andto_revision
, starting at the last common commit.tablename
— the name of the table to diff. This argument is optional. When it's not defined, all tables with schema diffs will be returned.
Schema
Example
For this example, we'll consider three tables within the context of two branches: main
and feature_branch
.
These are the tables on main
: employees
, inventory
, vacations
. These are the tables on feature_branch
: inventory
, photos
, trips
.
To figure out how these tables changed, we run the following query:
The results from DOLT_SCHEMA_DIFF()
show how the schema for all tables has changed going from tip of main
to tip of feature_branch
:
Let's look at the returned data.
The first row has values in
from_table_name
andfrom_create_statement
columns, whileto_table_name
andto_create_statement
columns are empty. This means that betweenmain
andfeature_branch
, the tableemployees
was deleted.The second row has identical values for
from_table_name
andto_table_name
, butfrom_create_statement
is different fromto_create_statement
. This means the table's schema changed betweenmain
andfeature_branch
.The third row is similar to the first row, except its
to_*
columns are empty, andfrom_*
columns are set. This means that betweenmain
andfeature_branch
, the tablephotos
was added.Finally, the last row has mostly identical
from_create_statement
andto_create_statement
columns, but differentfrom_table_name
andto_table_name
columns. This means the table was renamed changed betweenmain
andfeature_branch
.
We invoked DOLT_SCHEMA_DIFF()
with branch names, but we could have used any revision specifier. For example, we could have used commit hashes or tag names, and would have gotten the same results.
Using tags or commit hashes:
So far, we have always supplied just the first two parameters, the from
and to
revisions, but we have not specified the optional table parameter, so DOLT_SCHEMA_DIFF()
returned schema diffs of all changed tables. We can scope DOLT_SCHEMA_DIFF()
to a specific table simply by specifying it as the last parameter.
Let's try this with the inventory
table.
We will see this set of results:
When a table is renamed, we can specify either the "old" table name, or the "new" table name, and we will receive the same results. The following two queries will provide the same results:
Here are the results:
Finally, we can flip the order of the revisions to get the schema diff in the opposite direction.
The above query will produce this output:
Note the difference between this select and the previous dolt_schema_diff('main', 'feature_branch')
invocation:
First row shows that the table
photos
was deletedSecond row show the creation of
employees
tableThird row has the
from_create_statement
andto_create_statement
columns swappedFourth row shows the inverse rename of
trips
tovacations
Example query
You can try calling DOLT_SCHEMA_DIFF()
against the DoltHub docs_examples DB, by getting the diff of schemas between schema_diff_v1
and schema_diff_v2
tags, which correspond to main
and feature_branch
branches from these examples.
DOLT_QUERY_DIFF()
DOLT_QUERY_DIFF()
The DOLT_QUERY_DIFF()
table function calculates the data difference between any two queries, producing a table similar to the DOLT_DIFF()
table function.
Privileges
DOLT_QUERY_DIFF()
table function requires SELECT
privilege for all tables used in each query.
Example
For this example, we have the table t
in two branches main
and other
.
On main
, the table t
has the following data:
On other
, the table t
has the following data:
We can use the DOLT_QUERY_DIFF()
table function to calculate the difference between the two tables:
Note
Query diff is performed brute force and thus, will be slow for large result sets. The algorithm is super linear (n^2
) on the size of the results sets. Over time, we will optimize this to use features of the storage engine to improve performance.
Last updated