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

Fixes #4975 Fix dropping and creating the same database on dolt sql-server. We were caching doltdb's using a singleton and at the manifest cache level which lead to problems.

If I take the following SQL which works: ``` MySQL [palilax/dev]> SET @event_id='cb8ba301-6c27-4bf8-b99b-617082d72621'; Query OK, 1 row affected (0.058 sec) MySQL [palilax/dev]> INSERT INTO person_cal_entries (id, cal_entry_id_fk, person_id_fk) -> SELECT...

bug
panic
good-repro

Previously we required delimiters to have the previous delimiter at the end, but that requirement no longer exists, which matches MySQL's behavior.

companion PR: https://github.com/dolthub/go-mysql-server/pull/1470

when doing this query in dolthub: ``` SELECT diff_type, from_total, to_total, from_commit, from_commit_date, to_commit, to_commit_date FROM dolt_diff_inmate_population_snapshots WHERE ((to_id = '042b1a2a' AND to_snapshot_date = '2000-08-01') OR (from_id = '042b1a2a' AND...

bug

We have a docker image we have used for most of this year when running integration test with dolt (plan on switching to the official image, but we've had this...

bug
new format (__DOLT__)
docker

``` $ ls -al total 24 drwxr-xr-x 21 timsehn staff 672 Dec 13 08:45 . drwxr-xr-x 5 timsehn staff 160 Nov 4 11:13 .. -rw-r--r--@ 1 timsehn staff 8196 Oct...

bug
bad-error-message
sql-server

Cleans up chunk journal life cycle to facilitate push/pull/close paths. Prior work: - initial implementation of chunk journal: https://github.com/dolthub/dolt/pull/4878 - enforce single in-process NBS per directory: https://github.com/dolthub/dolt/pull/4848 - enforce uniqueness...