Tim Sehn
Tim Sehn
Dolt already supports patch and apply functionality. We should make it explicit with commands. `dolt patch` is equivalent to `dolt diff -r sql > file.sql`. `dolt apply` equivalent to `dolt...
``` test-working-set-cli-server-interaction $ dolt init Successfully initialized dolt data repository. test-working-set-cli-server-interaction $ dolt sql -q "create table test (pk int, c1 int, primary key(pk))" test-working-set-cli-server-interaction $ dolt commit -am "made...
It would be a cool feature to be able to change the log level for a running server by setting the appropriate system variable.
``` 2022-06-07T09:54:31-07:00 WARN [conn 9] error running query {connectTime=2022-06-07T09:54:31-07:00, connectionDb=getting_started, error=panic in ExchangeIterPartitionRows: unknown message id M, query=SELECT column_name as column_name FROM information_schema.statistics WHERE table_schema = 'getting_started' AND table_name =...
Repro sequence: Shell 1: ``` test_dolt_sql $ dolt init --new-format Successfully initialized dolt data repository. test_dolt_sql $ dolt sql-server Starting server with Config HP="localhost:3306"|T="28800000"|R="false"|L="info" 2022-09-08T09:51:24-07:00 INFO [conn 1] NewConnection {DisableClientMultiStatements=false}...
``` gc-repro $ dolt init --new-format Successfully initialized dolt data repository. gc-repro $ dolt sql -q "create table t (c1 int)" gc-repro $ dolt add . gc-repro $ dolt commit...
Repro. Shell 1: ``` dolt_new $ mkdir drop_repro dolt_new $ cd drop_repro/ drop_repro $ dolt init --new-format Successfully initialized dolt data repository. drop_repro $ dolt sql-server Starting server with Config...
Repro: 1. Configure a backup like so: `rollback $ dolt backup add backup file:///tmp/rollback-backup` 2. `cd ..` 3. `dolt sql-server` 3. Another shell. ``` rollback $ mysql -h 127.0.01 -u...
Shell 1: ``` dolt_new $ ls charsets_collations er-diagram schema-merge config.yaml er-diagram-2 us-housing-prices-v2 data_diff gc-repro dolt_new $ dolt sql-server Starting server with Config HP="localhost:3306"|T="28800000"|R="false"|L="info" 2022-09-12T15:10 ``` Shell 2: ``` $ mysql...
FULLTEXT KEY not supported: ``` CREATE TABLE `another_random_table` ( `id` int NOT NULL AUTO_INCREMENT, `body` text NOT NULL, PRIMARY KEY (`id`), FULLTEXT KEY `idx_body` (`body`) ) ENGINE=InnoDB AUTO_INCREMENT=223 DEFAULT CHARSET=utf8mb4...