Tim Sehn
Tim Sehn
``` mysql> select -> SHAQ.players.player_id as player_id, -> SHAQ.teams.team_id as team_id, -> left(stats.season_id,4) as season_id, -> 0 as season_type_id -> from -> nba_players.season_totals_regular_season as stats -> join -> SHAQ.players ->...
``` test-busteroni $ dolt sql # Welcome to the DoltSQL shell. # Statements must be terminated with ';'. # "exit" or "quit" (or Ctrl-D) to exit. test_busteroni> CREATE DATABASE test;...
The max it will create is a varchar(16383) so if you try to import a CSV with longer columns it will fail. ``` is not valid for column "client" (type...
``` $ 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...
@Hydrocharged and I were riffing on how we could make stored procedures better in Dolt and being aboe to call a specific version of a stored procedure would be very...
Right now `dolt dump` makes an individual insert for each row in the database. This is especially bad for reimporting into Dolt. Here's an example: ``` $ cat doltdump.sql SET...
Came in through a customer email: "Hi, quick question after a short play ( with dolt and local repo). There's reference to stash but I can't see any docs or...
A customer asked "Can the next version of Dolt be code signed?" I think they are referring to this process: https://wiki.debian.org/Creating%20signed%20GitHub%20releases This includes the `.msi` files so they don't get...
On my Mac, I get errors like the below ~1/100 bats tests runs. It looks like something is wrong in garbage collection. ``` ✗ feature-version: older client maintains access to...
Repro: ``` dolt clone https://doltremoteapi.awsdev.ld-corp.com/liuliu/test cloning https://doltremoteapi.awsdev.ld-corp.com/liuliu/test $ cd test $ dolt ls Tables in working set: debug test_unique test_varchar_text_display $ dolt sql -q "show create table test_unique" +-------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ |...