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

Closes #4015. Hopefully not the most messy implementation. I'm not sure modifying the time was the best solution, but it seemed to work OK. In all my tests it took...

contribution

Can take the same arguments as the [`DOLT_DIFF`](https://docs.dolthub.com/sql-reference/version-control/dolt-sql-functions#dolt_diff) table function, but instead returns the diff summary, similar to [`dolt diff --summary`](https://docs.dolthub.com/cli-reference/cli#dolt-diff). This would be useful for the hosted database UI,...

feature

Consider the following setup: ``` DROP TABLE IF EXISTS `c_file`; CREATE TABLE `c_file` ( `filename` varchar(255) NOT NULL, `data` text NOT NULL, `timestamp` bigint NOT NULL, PRIMARY KEY (`filename`) )...

bug
ORM

Consider the following table and data ``` CREATE TABLE IF NOT EXISTS `person` (`id` INTEGER AUTO_INCREMENT NOT NULL PRIMARY KEY, `name` VARCHAR(255) NOT NULL); INSERT INTO `person` (`name`) VALUES ('n1');...

bug
sql
ORM
correctness

Consider the following dump ``` SET FOREIGN_KEY_CHECKS = 0; SET AUTOCOMMIT = 0; DROP TABLE IF EXISTS `tweet`; CREATE TABLE `tweet` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT...

bug
ORM

Consider the following table ``` CREATE TABLE `test` ( `pk` bigint NOT NULL, `v2` int NOT NULL DEFAULT '100', `v3` int DEFAULT ((`v2` + 1)), PRIMARY KEY (`pk`) ) ENGINE=InnoDB...

bug
sql
correctness

Consider the following table ``` create table mytable (pk int primary key); ALTER TABLE mytable ADD COLUMN col2 text NOT NULL; ALTER TABLE mytable ADD CONSTRAINT constraint_check CHECK (col2 LIKE...

bug
good first issue
good-repro

We should not null out this column and supply the correct value. It is useful in integrations with editors.

enhancement
sql
tool integrations

Consider the following example: 1. Client 1 is modifying a table (with the database being unselected) and turns off autocommit and makes an update ``` mysql> set autocommit = off;...

SQL Editors
1hr

Being able to amend the previous commit's message would be a very useful feature to have. I will usually use `git commit --amend -m ""` rather than amending in an...

good first issue
feature