Commit Graph

5262 Commits

Author SHA1 Message Date
Aaron Son
0b21e98277 Merge pull request #1811 from liquidata-inc/aaron/fix-fileno-check-on-darwin
dolt/go/cmd/dolt/fileno_check_darwin.go: Fix setrlimit(RLIMIT_NOFILE, ...) on Darwin.
2019-07-19 10:13:06 -07:00
dependabot-preview[bot]
ddf4771589 build(deps): bump github.com/aws/aws-sdk-go in /dolt/go
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.20.21 to 1.21.0.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/master/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.20.21...v1.21.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-07-19 07:13:30 -07:00
dependabot-preview[bot]
4ef5b76fb4 build(deps): bump cloud.google.com/go from 0.41.0 to 0.43.0 in /dolt/go
Bumps [cloud.google.com/go](https://github.com/GoogleCloudPlatform/gcloud-golang) from 0.41.0 to 0.43.0.
- [Release notes](https://github.com/GoogleCloudPlatform/gcloud-golang/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/master/CHANGES.md)
- [Commits](https://github.com/GoogleCloudPlatform/gcloud-golang/compare/v0.41.0...v0.43.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-07-19 07:13:01 -07:00
dependabot-preview[bot]
2868855129 build(deps): bump github.com/aws/aws-sdk-go in /dolt/go
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.20.20 to 1.20.21.
- [Release notes](https://github.com/aws/aws-sdk-go/releases)
- [Changelog](https://github.com/aws/aws-sdk-go/blob/master/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-go/compare/v1.20.20...v1.20.21)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-07-18 19:08:52 -07:00
Brian Hendriks
a4bbac200b string delimeters for csv files 2019-07-18 17:54:28 -07:00
Daylon Wilkins
a68636c40b Fixed inconsistent spacing in bats files (not my fault grr) 2019-07-18 14:51:10 -07:00
Daylon Wilkins
ba0044ecea Moved bats windows compatibility changes to separate file 2019-07-18 14:51:10 -07:00
Daylon Wilkins
b13cea0dbd Fixed/skipped failing bats tests on Windows 2019-07-18 14:51:10 -07:00
Zach Musgrave
3e11955e7e Whitespace change to trigger jenkins 2019-07-18 12:11:43 -07:00
Zach Musgrave
cfec27d928 Merge branch 'master' into zachmu/fast-joins 2019-07-18 12:03:13 -07:00
Zach Musgrave
c7b8cf3d9f Added env variable checks to sql command and slow SQL integration test. Broke Indexed lookups into their own type, but not sure I like it any better, more duplication this way. 2019-07-18 12:00:06 -07:00
Brian Hendriks
25803c3b97 fix 2019-07-18 11:35:56 -07:00
Brian Hendriks
a409e20bac rebuilt protos 2019-07-18 11:21:00 -07:00
Brian Hendriks
cb7777d668 merge master -> bh/as/master 2019-07-18 11:19:46 -07:00
Brian Hendriks
a4b8d3335a Merge branch 'bh/as/master' into bh/panics-part-eleven 2019-07-18 11:04:01 -07:00
Brian Hendriks
14377c38a2 fix 2019-07-18 11:02:23 -07:00
Brian Hendriks
4559bf3131 pr feedback 2019-07-18 10:56:28 -07:00
Brian Hendriks
0757de1a70 fix import issues 2019-07-18 09:57:02 -07:00
Aaron Son
5d4fa15e03 dolt/go/cmd/dolt/fileno_check_darwin.go: Fix setrlimit(RLIMIT_NOFILE, ...) on Darwin.
It turns out rlim_max from getrlimit(RLIMIT_NOFILE, ...) is not a valid value
for rlim_cur in setrlimit(RLIMIT_NOFILE, ...) on Darwin. Golang used to silently
fix this for us, but it stopped doing it. See
https://github.com/golang/go/issues/30401.

Take reasonable steps to work around it for now.
2019-07-18 09:56:32 -07:00
Zach Musgrave
5a2d8d3e83 Fixed stock market test, kind of 2019-07-17 17:23:23 -07:00
Zach Musgrave
cf774f86dd Getting closer to working indexed joins. Added a giant integration test with real repository data, and fixed several bugs 2019-07-17 17:23:23 -07:00
Zach Musgrave
9d9a315617 Fixed new test 2019-07-17 17:23:23 -07:00
Zach Musgrave
5de95a5cf7 Added an additional test join query 2019-07-17 17:23:23 -07:00
Zach Musgrave
b94008f5e9 Fixed bug in index lookup 2019-07-17 17:23:23 -07:00
Aaron Son
954df2ef1d dolt/go: remotestorage/chunk_store: Thread appropriate context for GetRepoMetadata call on construction. 2019-07-17 16:39:11 -07:00
Aaron Son
0a7c1de4e4 dolt/go: remotestorage/chunk_store: Fetch repo metadata on construction to avoid I/O in Version(). 2019-07-17 16:35:09 -07:00
Brian Hendriks
de8042e7e4 fix 2019-07-17 16:15:38 -07:00
Aaron Son
7a875909b2 dolt/proto/Makefile: Get protoc and proto dependencies from submodules. 2019-07-17 15:05:14 -07:00
Aaron Son
cda2f2f793 dolt/go/utils/remotesrv: Fix grpc.go for new GetRepoMetadata method. 2019-07-17 14:50:42 -07:00
Aaron Son
6b6ee3398f Merge remote-tracking branch 'origin/bh/as/master' into aaron/grpc-chunkstore-version 2019-07-17 14:45:02 -07:00
Aaron Son
02a51e2609 Merge remote-tracking branch 'origin/master' into bh/as/master 2019-07-17 14:43:05 -07:00
Aaron Son
ddc02e10c9 dolt/go/proto: chunkstore.proto: Add GetRepoMetadata which can return NBS and NBF versions for the remote ChunkStore. 2019-07-17 14:36:54 -07:00
Brian Hendriks
b0c07f29b8 fixes 2019-07-17 14:20:58 -07:00
Brian Hendriks
561128fcc6 fixes 2019-07-17 14:20:58 -07:00
Brian Hendriks
8bad05c724 test fixes 2019-07-17 14:20:58 -07:00
Brian Hendriks
0ed82d985c fix merge 2019-07-17 14:20:58 -07:00
Brian Hendriks
414535a9eb panics to errs 2019-07-17 14:20:58 -07:00
Brian Hendriks
46355538e3 more panics 2019-07-17 14:20:58 -07:00
Aaron Son
1a604692e3 dolt/go/store/nbs: Make manifest updates thread version to new manifest. Override a new manifest's version from an environment variable. 2019-07-17 13:07:42 -07:00
dependabot-preview[bot]
aa3fe8cb81 build(deps): bump github.com/cenkalti/backoff in /dolt/go
Bumps [github.com/cenkalti/backoff](https://github.com/cenkalti/backoff) from 2.1.1+incompatible to 2.2.1+incompatible.
- [Release notes](https://github.com/cenkalti/backoff/releases)
- [Commits](https://github.com/cenkalti/backoff/compare/v2.1.1...v2.2.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-07-17 09:16:01 -07:00
Zach Musgrave
efc0c8ebe3 Added support for explain statements, fixed a short description 2019-07-16 17:27:33 -07:00
Daylon Wilkins
030aa1bbd5 Small fix to single test 2019-07-16 13:45:04 -07:00
Aaron Son
52c8c1dea6 Merge remote-tracking branch 'origin/master' into aaron/bh-as-master-merge-master 2019-07-16 13:43:20 -07:00
Aaron Son
15973f60c1 dolt/go: store/types: Rename Format to NomsBinFormat.
Standardize parameter name for *NomsBinFormat to nbf. Standardize `nbf` as
first (after `ctx`) parameter. Remove unnecessary `nbf` parameters when format
is available from incoming `Value` or `ValueReader`.
2019-07-16 13:27:26 -07:00
Brian Hendriks
8f78b7166a bump release version 2019-07-16 11:20:45 -07:00
dependabot-preview[bot]
50298d0b12 build(deps): bump github.com/gizak/termui/v3 in /dolt/go
Bumps [github.com/gizak/termui/v3](https://github.com/gizak/termui) from 3.0.0 to 3.1.0.
- [Release notes](https://github.com/gizak/termui/releases)
- [Changelog](https://github.com/gizak/termui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gizak/termui/compare/v3.0.0...v3.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-07-16 08:03:04 -07:00
Matt Jesuele
09cfa141d6 dolt/bats/advanced-sql.bats: Fix bats test 2019-07-15 17:29:47 -07:00
Daylon Wilkins
dab3cea0de Fixed some bats tests 2019-07-15 17:29:47 -07:00
Daylon Wilkins
466c3faaaa Implemented minor changes based on feedback 2019-07-15 17:29:47 -07:00
Daylon Wilkins
d8343e0bff Merged and commands 2019-07-15 17:29:47 -07:00