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

generating a new server config has a hard switch between args or a static file: ```go func GetServerConfig(dEnv *env.DoltEnv, apr *argparser.ArgParseResults) (ServerConfig, error) { if cfgFile, ok := apr.GetValue(configFileFlag); ok...

enhancement
sql-server

We recently enabled the use of deterministic functions in CHECK constraints. But the current implementation relies on the proper string serialization of function expressions. But early testing indicates that at...

enhancement
testing

calculate edits in a cell-wise method, rather than the current row-wise method

enhancement

The following schema works fine in the mysql, but not in the dolt db. ```sql CREATE TABLE `about` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `uuid` char(36) NOT NULL, `status`...

bug
sql

Repro steps: ```sql test> create database new2; test> use new2; Database changed new2> create table a(a int primary key); new2> insert into a values (1), (2); Query OK, 2 rows...

bug
sql

Repro: Go to any repo and run `dolt push origin HEAD` Go to the repo on DoltHub and you'll see that `HEAD` is in the list of branch names instead...

bug
cli

If pushing to a DoltHub repository that does not have the correct credentials, Dolt does not fast fail. ``` Tree Level: 10 has 5 new chunks of which 0 already...

performance
cli

On `dolthub`, my display name is set to an empty string (""). I then check my dolt config `dolt config --global --list`: ``` user.email [email protected] user.name iamdevdisplayname ``` I run...

bug
cli

Here are my current dolt config values: ``` user.email = [email protected] user.name = emailOne ``` After running `dolt login`, browser opens and I'm logged in under my other account `emailTwo`

cli

It's probably rare that the user actually wants to create new credentials and associate them with a different dolthub account. If credentials already exist and they already work with the...

cli