You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/using-gitbase/configuration.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,20 @@
19
19
|`GITBASE_MAX_UAST_BLOB_SIZE`| Max size of blobs to send to be parsed by bblfsh. Default: 5242880 (5MB) |
20
20
|`GITBASE_LOG_LEVEL`| minimum logging level to show, use `fatal` to suppress most messages. Default: `info`|
21
21
22
+
## Configuration from `go-mysql-server`
23
+
24
+
<!-- BEGIN CONFIG -->
25
+
| Name | Type | Description |
26
+
|:-----|:-----|:------------|
27
+
|`INMEMORY_JOINS`|environment|If set it will perform all joins in memory. Default is off.|
28
+
|`inmemory_joins`|session|If set it will perform all joins in memory. Default is off. This has precedence over `INMEMORY_JOINS`.|
29
+
|`MAX_MEMORY_INNER_JOIN`|environment|The maximum number of memory, in megabytes, that can be consumed by go-mysql-server before switching to multipass mode in inner joins. Default is the 20% of all available physical memory.|
30
+
|`max_memory_joins`|session|The maximum number of memory, in megabytes, that can be consumed by go-mysql-server before switching to multipass mode in inner joins. Default is the 20% of all available physical memory. This has precedence over `MAX_MEMORY_INNER_JOIN`.|
31
+
|`DEBUG_ANALYZER`|environment|If set, the analyzer will print debug messages. Default is off.|
32
+
|`PILOSA_INDEX_THREADS`|environment|Number of threads used in index creation. Default is the number of cores available in the machine.|
33
+
|`pilosa_index_threads`|environment|Number of threads used in index creation. Default is the number of cores available in the machine. This has precedence over `PILOSA_INDEX_THREADS`.|
34
+
<!-- END CONFIG -->
35
+
22
36
### Jaeger tracing variables
23
37
24
38
*Extracted from https://github.com/jaegertracing/jaeger-client-go/blob/master/README.md*
|`ARRAY_LENGTH(json)`|If the json representation is an array, this function returns its size.|
26
+
|`AVG(expr)`|Returns the average value of expr in all rows.|
27
+
|`CEIL(number)`|Return the smallest integer value that is greater than or equal to `number`.|
28
+
|`CEILING(number)`|Return the smallest integer value that is greater than or equal to `number`.|
29
+
|`COALESCE(...)`|The function returns the first non-null value in a list.|
30
+
|`CONCAT(...)`|Concatenate any group of fields into a single string.|
31
+
|`CONCAT_WS(sep, ...)`|Concatenate any group of fields into a single string. The first argument is the separator for the rest of the arguments. The separator is added between the strings to be concatenated. The separator can be a string, as can the rest of the arguments. If the separator is NULL, the result is NULL.|
32
+
|`CONNECTION_ID()`|Return the current connection ID.|
33
+
|`COUNT(expr)`| Returns a count of the number of non-NULL values of expr in the rows retrieved by a SELECT statement.|
34
+
|`DATE_ADD(date, interval)`|Adds the interval to the given date.|
35
+
|`DATE_SUB(date, interval)`|Subtracts the interval from the given date.|
36
+
|`DAY(date)`|Synonym for DAYOFMONTH().|
37
+
|`DATE(date)`|Returns the date part of the given date.|
38
+
|`DAYOFMONTH(date)`|Return the day of the month (0-31).|
39
+
|`DAYOFWEEK(date)`|Returns the day of the week of the given date.|
40
+
|`DAYOFYEAR(date)`|Returns the day of the year of the given date.|
41
+
|`FLOOR(number)`|Return the largest integer value that is less than or equal to `number`.|
42
+
|`HOUR(date)`|Returns the hours of the given date.|
43
+
|`IFNULL(expr1, expr2)`|If expr1 is not NULL, IFNULL() returns expr1; otherwise it returns expr2.|
44
+
|`IS_BINARY(blob)`|Returns whether a BLOB is a binary file or not.|
45
+
|`JSON_EXTRACT(json_doc, path, ...)`|Extracts data from a json document using json paths.|
46
+
|`LN(X)`|Return the natural logarithm of X.|
47
+
|`LOG(X), LOG(B, X)`|If called with one parameter, this function returns the natural logarithm of X. If called with two parameters, this function returns the logarithm of X to the base B. If X is less than or equal to 0, or if B is less than or equal to 1, then NULL is returned.|
48
+
|`LOG10(X)`|Returns the base-10 logarithm of X.|
49
+
|`LOG2(X)`|Returns the base-2 logarithm of X.|
50
+
|`LOWER(str)`|Returns the string str with all characters in lower case.|
51
+
|`LPAD(str, len, padstr)`|Return the string argument, left-padded with the specified string.|
52
+
|`LTRIM(str)`|Returns the string str with leading space characters removed.|
53
+
|`MAX(expr)`|Returns the maximum value of expr in all rows.|
54
+
|`MID(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.|
55
+
|`MIN(expr)`|Returns the minimum value of expr in all rows.|
56
+
|`MINUTE(date)`|Returns the minutes of the given date.|
57
+
|`MONTH(date)`|Returns the month of the given date.|
58
+
|`NOW()`|Returns the current timestamp.|
59
+
|`NULLIF(expr1, expr2)`|Returns NULL if expr1 = expr2 is true, otherwise returns expr1.|
60
+
|`POW(X, Y)`|Returns the value of X raised to the power of Y.|
61
+
|`REPEAT(str, count)`|Returns a string consisting of the string str repeated count times.|
62
+
|`REPLACE(str,from_str,to_str)`|Returns the string str with all occurrences of the string from_str replaced by the string to_str.|
63
+
|`REVERSE(str)`|Returns the string str with the order of the characters reversed.|
64
+
|`ROUND(number, decimals)`|Round the `number` to `decimals` decimal places.|
65
+
|`RPAD(str, len, padstr)`|Returns the string str, right-padded with the string padstr to a length of len characters.|
66
+
|`RTRIM(str)`|Returns the string str with trailing space characters removed.|
67
+
|`SECOND(date)`|Returns the seconds of the given date.|
68
+
|`SLEEP(seconds)`|Wait for the specified number of seconds (can be fractional).|
69
+
|`SOUNDEX(str)`|Returns the soundex of a string.|
70
+
|`SPLIT(str,sep)`|Receives a string and a separator and returns the parts of the string split by the separator as a JSON array of strings.|
71
+
|`SQRT(X)`|Returns the square root of a nonnegative number X.|
72
+
|`SUBSTR(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.|
73
+
|`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.|
74
+
|`SUM(expr)`|Returns the sum of expr in all rows.|
75
+
|`TO_BASE64(str)`|Encodes the string str in base64 format.|
76
+
|`FROM_BASE64(str)`|Decodes the base64-encoded string str.|
77
+
|`TRIM(str)`|Returns the string str with all spaces removed.|
78
+
|`UPPER(str)`|Returns the string str with all characters in upper case.|
79
+
|`WEEKDAY(date)`|Returns the weekday of the given date.|
80
+
|`YEAR(date)`|Returns the year of the given date.|
81
+
|`YEARWEEK(date, mode)`|Returns year and week for a date. The year in the result may be different from the year in the date argument for the first and the last week of the year.|
82
+
<!-- END FUNCTIONS -->
18
83
19
84
## Note about uast, uast_mode, uast_xpath and uast_children functions
20
85
@@ -92,7 +157,3 @@ Nodes that have no value for the requested property will not be present in any w
92
157
Also, if you want to retrieve values from a non common property, you can pass it directly
93
158
94
159
> uast_extract(nodes_column, 'some-property')
95
-
96
-
## Standard functions
97
-
98
-
You can check standard functions in [`go-mysql-server` documentation](https://github.com/src-d/go-mysql-server/tree/3dd441325d1731821eff0495fbf63747c258b8ff#custom-functions).
0 commit comments