Skip to content

Commit bd172da

Browse files
committed
vendor: upgrade go-mysql-server
Signed-off-by: Miguel Molina <[email protected]>
1 parent 3b15073 commit bd172da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1389
-13148
lines changed

Gopkg.lock

Lines changed: 2 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[[constraint]]
22
name = "gopkg.in/src-d/go-mysql-server.v0"
3-
revision = "e8316f5430855f55b0da4b5c63fc990d75c2c085"
3+
revision = "255f4a35c69f573b6b19d73f03dd7265961dcba3"
44

55
[[constraint]]
66
name = "github.com/jessevdk/go-flags"

docs/using-gitbase/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ To make some common tasks easier for the user, there are some functions to inter
1717

1818
## Standard functions
1919

20-
You can check standard functions in [`go-mysql-server` documentation](https://github.com/src-d/go-mysql-server/tree/e8316f5430855f55b0da4b5c63fc990d75c2c085#custom-functions).
20+
You can check standard functions in [`go-mysql-server` documentation](https://github.com/src-d/go-mysql-server/tree/255f4a35c69f573b6b19d73f03dd7265961dcba3#custom-functions).

docs/using-gitbase/indexes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Note that you can create an index either **on one or more columns** or **on a si
1010

1111
You can find some more examples in the [examples](./examples.md#create-an-index-for-columns-on-a-table) section.
1212

13-
See [go-mysql-server](https://github.com/src-d/go-mysql-server/tree/e8316f5430855f55b0da4b5c63fc990d75c2c085#indexes) documentation for more details
13+
See [go-mysql-server](https://github.com/src-d/go-mysql-server/tree/255f4a35c69f573b6b19d73f03dd7265961dcba3#indexes) documentation for more details
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## Supported syntax
22

3-
To see the SQL subset currently supported take a look at [this list](https://github.com/src-d/go-mysql-server/blob/e8316f5430855f55b0da4b5c63fc990d75c2c085/SUPPORTED.md) from [src-d/go-mysql-server](https://github.com/src-d/go-mysql-server).
3+
To see the SQL subset currently supported take a look at [this list](https://github.com/src-d/go-mysql-server/blob/255f4a35c69f573b6b19d73f03dd7265961dcba3/SUPPORTED.md) from [src-d/go-mysql-server](https://github.com/src-d/go-mysql-server).

tools/rev-upgrade/main.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import (
1616
git "gopkg.in/src-d/go-git.v4"
1717
)
1818

19+
const lockFile = "Gopkg.lock"
20+
1921
type project struct {
2022
Name string
2123
Revision string
@@ -140,6 +142,11 @@ func replace(w *git.Worktree, oldRev, newRev string) error {
140142

141143
files := make(map[string]struct{})
142144
for _, r := range res {
145+
// ignore replacements on lockfile so update works
146+
if r.FileName == lockFile {
147+
continue
148+
}
149+
143150
if _, ok := files[r.FileName]; !ok {
144151
files[r.FileName] = struct{}{}
145152
}

vendor/github.com/pilosa/go-pilosa/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

vendor/github.com/pilosa/go-pilosa/.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

vendor/github.com/pilosa/go-pilosa/CHANGELOG.md

Lines changed: 0 additions & 85 deletions
This file was deleted.

vendor/github.com/pilosa/go-pilosa/CONTRIBUTING.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)