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

MySQL will implicitly convert types for `InSubquery` nodes, but Dolt doesn't seem to do this. **MySQL Behavior:** ``` mysql> select 1 from dual where 1 in (select "1" from dual);...

bug

Fixes: https://github.com/dolthub/dolt/issues/3934 Depends on: https://github.com/dolthub/go-mysql-server/pull/1156

They're case sensitive now. Compare mysql: ```sql mysql> create table enums (a int primary key, b enum ('one', 'two', 'three')); Query OK, 0 rows affected (0.06 sec) mysql> insert into...

bug

:coffee: *An Automated Dependency Version Bump PR* :crown: ### Initial Changes The initial changes contained in this PR were produced by `go get`ing the dependency. ``` $ cd ./go $...

gms-bump

Remove the global async iter queue that is not used by new format. This has little effect on a long-running set of tests or a server that runs multiple tests,...

Can't migrate this database: https://dolthub.awsdev.ld-corp.com/repositories/dolthub/restaurants ``` $ dolt migrate migrating database at tmp dir: /var/folders/wh/6q0wy65966s8dks8095btf180000gn/T/dolt_migration_1660155649043158000 2022-08-10 18:20:49.052183 +0000 UTC migrating commit 0ljb7alin8umav4ulh38l2v6mh2je0oa 2022-08-10 18:20:49.066095 +0000 UTC migrating commit 8jvujeafe7en5hqlgual5n4c9097fu1p 2022-08-10...

This PR adds the ability to amend the commit at `HEAD`. It accomplishes this by first soft resetting to `HEAD~1` before applying the new commit. Empty new amended commits are...

Ignore the errors for now, I still need to add all of the character sets and collations that we use internally. Testing will come once the missing items are in...

I didn't see any Dolt engine tests using views with as of expressions, so wanted to add some coverage. Depends on: https://github.com/dolthub/go-mysql-server/pull/1159