dolt icon indicating copy to clipboard operation
dolt copied to clipboard

Dolt – Git for Data

Results 471 dolt issues
Sort by recently updated
recently updated
newest added

I have a directory (\~/dolt) containing one db (\~/dolt/mydb), which was created using the new format (`DOLT_DEFAULT_BIN_FORMAT=__DOLT_1__ dolt init`). I was using dolt 0.40.19 for creation of that db. I...

[TPC-C](https://www.tpc.org/tpc_documents_current_versions/pdf/tpc-c_v5.11.0.pdf) is composed of 5 transaction types. The "new order" transaction contains a join query on the `customer` and `warehouse` tables: ``` SELECT c_discount, c_last, c_credit, w_tax FROM customer1, warehouse1...

performance
analyzer

``` us-schools $ dolt ls -a Tables in working set: schools System tables: dolt_docs dolt_commit_ancestors dolt_diff_dolt_docs dolt_commit_diff_dolt_docs dolt_conflicts_schools dolt_conflicts dolt_diff_schools dolt_history_dolt_docs dolt_constraint_violations_dolt_docs dolt_commits dolt_status dolt_remotes dolt_constraint_violations_schools dolt_conflicts_dolt_docs dolt_branches dolt_log dolt_constraint_violations...

From Discord with a potential user: > It would be great (more from a blockchainish nonrepudiable evidence of state perspective than for gittish versioning applications) if there were some way...

enhancement

It's not safe to issue CLI commands to update a database while a server is running. To prevent issues this might cause, we made any command that updates database state...

enhancement
cli

Our current guidance for connection pooling is either don't do it, or be very careful to reinitialize any connection by checking out the desired branch before use. The reason for...

create a new database and clone the us-jails database in it ``` mkdir ~/doltdbs/ cd doltdbs dolt clone dolthub/us-jails ``` Run this query from the command line: ``` >dolt sql...

bug

This in and of itself is not an issue but can create a confusing first hour experience issue. Let's say I make a dolt directory and database directory like so:...

Tip of main. Before running `dolt sql-server` ``` dolt $ ls -al total 48 drwxr-xr-x 70 timsehn staff 2240 Jul 19 09:34 . drwxr-xr-x 6 timsehn staff 192 Oct 18...