System Variables
What is a System Variable?
System variables are server-side key-value pairs. These variables have lifecycles between server restarts (PERSIST
), between sessions within a single server lifetime (GLOBAL
), and within a single client session (SESSION
). Variables for narrowing scopes are initialized hierarchically: PERSIST
-> GLOBAL
-> SESSION
.
How to use System Variables
System variables are most often managed through the SQL shell, although server-startup defaults can be manually set and persisted between server restarts.
Difference between Postgres and Doltgres System Variables
Doltgres only supports a subset of Postgres's system variables at the moment. The ones we do support should have the same lifecycle behavior as Postgres.
We also have Doltgres-specific system variables, which can be found here. Most dolt specific variables are prefixed with either dolt_...
or the database's name (ex: mydb_...
). These can be listed in the Postgres shell with show queries: show all
.
Interaction with Doltgres Version Control
System variables are maintained outside of version control. Different clones of the same database can have different system variables.
Some system variables impact transaction, merge, and conflict resolution behavior. For example, @@dolt_force_transaction_commit
both creates a new Doltgres commit for every SQL transaction, and dismisses merge conflicts in the process of auto-executing these commits.
A full list of Doltgres system variables and descriptions can be found here.
Example
Reading System Variables
Writing System Variables
Show System Variables
The SHOW ALL
shows all system variables, but this syntax is not yet supported.
Last updated