Skip to content

Commit 159bf37

Browse files
authored
Merge branch 'master' into vet-tool
2 parents c510991 + 5597e48 commit 159bf37

File tree

749 files changed

+73061
-19569
lines changed

Some content is hidden

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

749 files changed

+73061
-19569
lines changed

Gopkg.lock

+14-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+7-3
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 = "bb5fe96ff756e5b25ec53c68c92d92c108832a65"
3+
revision = "cb312768e257cb41e669331551e29e8a081e85b5"
44

55
[[constraint]]
66
name = "github.com/jessevdk/go-flags"
@@ -70,16 +70,20 @@
7070

7171
[[override]]
7272
name = "github.com/pilosa/pilosa"
73-
revision = "f62dbc00b96f596a1f2ef8b4e87ba8ec847eda37"
73+
version = "1.3.0"
7474

7575
[[override]]
7676
name = "github.com/pilosa/go-pilosa"
77-
version = "0.10.0"
77+
version = "1.3.0"
7878

7979
[[override]]
8080
name = "github.com/src-d/go-oniguruma"
8181
version = "1.0.0"
8282

83+
[[constraint]]
84+
name = "gopkg.in/src-d/go-vitess.v1"
85+
version = "1.6.0"
86+
8387
[prune]
8488
[[prune.project]]
8589
name = "gopkg.in/src-d/go-mysql-server.v0"

docs/using-gitbase/functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ These are all functions that are available because they are implemented in `go-m
3939
|`DAYOFWEEK(date)`|Returns the day of the week of the given date.|
4040
|`DAYOFYEAR(date)`|Returns the day of the year of the given date.|
4141
|`FLOOR(number)`|Return the largest integer value that is less than or equal to `number`.|
42+
|`FROM_BASE64(str)`|Decodes the base64-encoded string str.|
4243
|`HOUR(date)`|Returns the hours of the given date.|
4344
|`IFNULL(expr1, expr2)`|If expr1 is not NULL, IFNULL() returns expr1; otherwise it returns expr2.|
4445
|`IS_BINARY(blob)`|Returns whether a BLOB is a binary file or not.|
@@ -73,7 +74,6 @@ These are all functions that are available because they are implemented in `go-m
7374
|`SUBSTRING(str, pos, [len])`|Return a substring from the provided string starting at `pos` with a length of `len` characters. If no `len` is provided, all characters from `pos` until the end will be taken.|
7475
|`SUM(expr)`|Returns the sum of expr in all rows.|
7576
|`TO_BASE64(str)`|Encodes the string str in base64 format.|
76-
|`FROM_BASE64(str)`|Decodes the base64-encoded string str.|
7777
|`TRIM(str)`|Returns the string str with all spaces removed.|
7878
|`UPPER(str)`|Returns the string str with all characters in upper case.|
7979
|`WEEKDAY(date)`|Returns the weekday of the given date.|

docs/using-gitbase/indexes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ and for the second query also two indexes will be used and the result will be a
2626

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

29-
See [go-mysql-server](https://github.com/src-d/go-mysql-server/tree/bb5fe96ff756e5b25ec53c68c92d92c108832a65#indexes) documentation for more details
29+
See [go-mysql-server](https://github.com/src-d/go-mysql-server/tree/cb312768e257cb41e669331551e29e8a081e85b5#indexes) documentation for more details

vendor/github.com/pilosa/pilosa/.circleci/config.yml

+81-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/pilosa/pilosa/.github/ISSUE_TEMPLATE.md

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/pilosa/pilosa/.github/PULL_REQUEST_TEMPLATE.md

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

-52
This file was deleted.

0 commit comments

Comments
 (0)