AndyA

Results 21 comments of AndyA

I wanted something like `Comparable[T]()` for a package I was working on. When I couldn't find a general-purpose solution, I wrote my version that uses `unsafe` to get access to...

related issue ``` PS C:\Users\timse\dolthub\dolt\us-federal-election-precinct-results> dolt table import -c -pks "year, state_fips,county_fips, precinct, candidate" precinct_results .\2016-precinct-local.csv expected 1 or 2 arguments ``` should say ` args given`

A design might look like an optional set of table names that creates a "restricted view" of the tagged commit. Tables absent from the visible set would not be accessible...

@addisonklinke thanks for submitting this issue. It may be possible to support staging subsets in Dolt, but it would take some careful design to get it right. Dolt's storage-layer is...

Addressed https://github.com/nautobot/nautobot-plugin-workflow-dolt/pull/62

change verbage to "Share Link" (for now)

Need to document steps to initialize the default branch name

document Dolt configuration command `dolt config --global --add init.defaultbranch main`

Thanks for the request @peter7891! There are a few things to consider when choosing a hash function for a hash table. Hash functions with a poor output distribution can quickly...

I wrote some [microbenchmarks](https://github.com/dolthub/maphash/blob/56a149a97f2ffe2a68163d5420460fc04b867385/hasher_bench_test.go#L39) to compare a few potential hash functions. The current hash function is `dolthub/maphash`. ``` goos: darwin goarch: amd64 pkg: github.com/dolthub/maphash cpu: Intel(R) Core(TM) i7-9750H CPU @...