sqllens 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/THIRD-PARTY-NOTICES.md +31 -6
  2. package/dist/api.d.ts +2 -0
  3. package/dist/api.js +2 -0
  4. package/dist/bigquery/fn-docs.generated.d.ts +2 -0
  5. package/dist/bigquery/fn-docs.generated.js +1704 -0
  6. package/dist/completion/jinja-slot.js +6 -1
  7. package/dist/databricks/fn-docs.generated.d.ts +2 -0
  8. package/dist/databricks/fn-docs.generated.js +3257 -0
  9. package/dist/duckdb/fn-docs.generated.d.ts +2 -0
  10. package/dist/duckdb/fn-docs.generated.js +2051 -0
  11. package/dist/duckdb/fold.js +6 -4
  12. package/dist/ident/fold.d.ts +5 -2
  13. package/dist/ident/fold.js +2 -0
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +1 -1
  16. package/dist/infer/types.js +4 -1
  17. package/dist/mysql/fn-docs.generated.d.ts +2 -0
  18. package/dist/mysql/fn-docs.generated.js +1204 -0
  19. package/dist/parse-diagnostics.js +33 -1
  20. package/dist/postgres/fn-docs.generated.d.ts +2 -0
  21. package/dist/postgres/fn-docs.generated.js +2818 -0
  22. package/dist/postgres/fold.js +9 -3
  23. package/dist/postgres/signatures.generated.js +585 -585
  24. package/dist/redshift/fn-docs.generated.d.ts +2 -0
  25. package/dist/redshift/fn-docs.generated.js +1457 -0
  26. package/dist/redshift/fold.js +6 -4
  27. package/dist/sema/resolve.js +3 -1
  28. package/dist/signature/docs.d.ts +16 -0
  29. package/dist/signature/docs.js +47 -0
  30. package/dist/signature/render.d.ts +7 -0
  31. package/dist/signature/render.js +40 -0
  32. package/dist/signature/signature.js +5 -5
  33. package/dist/snowflake/fn-docs.generated.d.ts +2 -0
  34. package/dist/snowflake/fn-docs.generated.js +2461 -0
  35. package/dist/sqlite/fn-docs.generated.d.ts +2 -0
  36. package/dist/sqlite/fn-docs.generated.js +609 -0
  37. package/dist/sqlite/fold.js +5 -7
  38. package/dist/trino/fn-docs.generated.d.ts +2 -0
  39. package/dist/trino/fn-docs.generated.js +1932 -0
  40. package/dist/tsql/fn-docs.generated.d.ts +2 -0
  41. package/dist/tsql/fn-docs.generated.js +1017 -0
  42. package/package.json +1 -1
@@ -0,0 +1,1704 @@
1
+ export const BIGQUERY_FN_DOCS = {
2
+ abs: {
3
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#abs",
4
+ description: "Computes absolute value.",
5
+ origin: "vendor-docs",
6
+ },
7
+ acos: {
8
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#acos",
9
+ description: "Computes the principal value of the inverse cosine of X.",
10
+ origin: "vendor-docs",
11
+ },
12
+ acosh: {
13
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#acosh",
14
+ description: "Computes the inverse hyperbolic cosine of X.",
15
+ origin: "vendor-docs",
16
+ },
17
+ add_months: {
18
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
19
+ description: "Adds a specified number of months to a `DATETIME` value.",
20
+ origin: "vendor-docs",
21
+ },
22
+ agg: {
23
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions",
24
+ description: "Aggregates a [measure type][measure-type].",
25
+ origin: "vendor-docs",
26
+ },
27
+ array_agg: {
28
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#array_agg",
29
+ description: "Returns an ARRAY of `expression` values.",
30
+ origin: "vendor-docs",
31
+ },
32
+ array_avg: {
33
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
34
+ description: "Returns the average of non-`NULL` values in an array.",
35
+ origin: "vendor-docs",
36
+ },
37
+ array_concat: {
38
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
39
+ description: "Concatenates one or more arrays with the same element type into a single array.",
40
+ origin: "vendor-docs",
41
+ },
42
+ array_filter: {
43
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
44
+ description: "Takes an array, filters out unwanted elements, and returns the results in a new array.",
45
+ origin: "vendor-docs",
46
+ },
47
+ array_first: {
48
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
49
+ description: "Takes an array and returns the first element in the array.",
50
+ origin: "vendor-docs",
51
+ },
52
+ array_includes: {
53
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
54
+ description: "Takes an array and returns `TRUE` if there is an element in the array that is equal to the search_value.",
55
+ origin: "vendor-docs",
56
+ },
57
+ array_includes_all: {
58
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
59
+ description: "Takes an array to search and an array of search values.",
60
+ origin: "vendor-docs",
61
+ },
62
+ array_includes_any: {
63
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
64
+ description: "Takes an array to search and an array of search values.",
65
+ origin: "vendor-docs",
66
+ },
67
+ array_is_distinct: {
68
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
69
+ description: "Returns `TRUE` if the array contains no repeated elements, using the same equality comparison logic as `SELECT DISTINCT`.",
70
+ origin: "vendor-docs",
71
+ },
72
+ array_last: {
73
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
74
+ description: "Takes an array and returns the last element in the array.",
75
+ origin: "vendor-docs",
76
+ },
77
+ array_length: {
78
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
79
+ description: "Returns the size of the array.",
80
+ origin: "vendor-docs",
81
+ },
82
+ array_max: {
83
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
84
+ description: "Returns the maximum non-`NULL` value in an array.",
85
+ origin: "vendor-docs",
86
+ },
87
+ array_min: {
88
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
89
+ description: "Returns the minimum non-`NULL` value in an array.",
90
+ origin: "vendor-docs",
91
+ },
92
+ array_reverse: {
93
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
94
+ description: "Returns the input `ARRAY` with elements in reverse order.",
95
+ origin: "vendor-docs",
96
+ },
97
+ array_slice: {
98
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
99
+ description: "Returns an array containing zero or more consecutive elements from the input array.",
100
+ origin: "vendor-docs",
101
+ },
102
+ array_sum: {
103
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
104
+ description: "Returns the sum of non-`NULL` values in an array.",
105
+ origin: "vendor-docs",
106
+ },
107
+ array_to_string: {
108
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
109
+ description: "Returns a concatenation of the elements in `array_expression` as a `STRING` or `BYTES` value.",
110
+ origin: "vendor-docs",
111
+ },
112
+ array_transform: {
113
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
114
+ description: "Takes an array, transforms the elements, and returns the results in a new array.",
115
+ origin: "vendor-docs",
116
+ },
117
+ ascii: {
118
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
119
+ description: "Returns the ASCII code for the first character or byte in `value`.",
120
+ origin: "vendor-docs",
121
+ },
122
+ asin: {
123
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#asin",
124
+ description: "Computes the principal value of the inverse sine of X.",
125
+ origin: "vendor-docs",
126
+ },
127
+ asinh: {
128
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#asinh",
129
+ description: "Computes the inverse hyperbolic sine of X.",
130
+ origin: "vendor-docs",
131
+ },
132
+ atan: {
133
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#atan",
134
+ description: "Computes the principal value of the inverse tangent of X.",
135
+ origin: "vendor-docs",
136
+ },
137
+ atan2: {
138
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#atan2",
139
+ description: "Calculates the principal value of the inverse tangent of X/Y using the signs of the two arguments to determine the quadrant.",
140
+ origin: "vendor-docs",
141
+ },
142
+ atanh: {
143
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#atanh",
144
+ description: "Computes the inverse hyperbolic tangent of X.",
145
+ origin: "vendor-docs",
146
+ },
147
+ avg: {
148
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#avg",
149
+ description: "Returns the average of non-`NULL` values in an aggregated group.",
150
+ origin: "vendor-docs",
151
+ },
152
+ bit_cast_to_int32: {
153
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/bit_functions",
154
+ description: "GoogleSQL supports bit casting to `INT32`.",
155
+ origin: "vendor-docs",
156
+ },
157
+ bit_cast_to_int64: {
158
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/bit_functions",
159
+ description: "GoogleSQL supports bit casting to `INT64`.",
160
+ origin: "vendor-docs",
161
+ },
162
+ bit_cast_to_uint32: {
163
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/bit_functions",
164
+ description: "GoogleSQL supports bit casting to `UINT32`.",
165
+ origin: "vendor-docs",
166
+ },
167
+ bit_cast_to_uint64: {
168
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/bit_functions",
169
+ description: "GoogleSQL supports bit casting to `UINT64`.",
170
+ origin: "vendor-docs",
171
+ },
172
+ bit_count: {
173
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/bit_functions",
174
+ description: "The input, `expression`, must be an integer or `BYTES`.",
175
+ origin: "vendor-docs",
176
+ },
177
+ bool: {
178
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#bool_for_json",
179
+ description: "Converts a JSON boolean to a SQL `BOOL` value.",
180
+ origin: "vendor-docs",
181
+ },
182
+ bool_array: {
183
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#bool_array_for_json",
184
+ description: "Converts a JSON array of booleans to a SQL `ARRAY<BOOL>` value.",
185
+ origin: "vendor-docs",
186
+ },
187
+ byte_length: {
188
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
189
+ description: "Gets the number of `BYTES` in a `STRING` or `BYTES` value, regardless of whether the value is a `STRING` or `BYTES` type.",
190
+ origin: "vendor-docs",
191
+ },
192
+ cast: {
193
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conversion_functions#cast",
194
+ description: "Cast syntax is used in a query to indicate that the result type of an expression should be converted to some other type.",
195
+ origin: "vendor-docs",
196
+ },
197
+ cbrt: {
198
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#cbrt",
199
+ description: "Computes the cube root of `X`.",
200
+ origin: "vendor-docs",
201
+ },
202
+ ceil: {
203
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#ceil",
204
+ description: "Returns the smallest integral value that isn't less than X.",
205
+ origin: "vendor-docs",
206
+ },
207
+ ceiling: {
208
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#ceiling",
209
+ description: "Synonym of CEIL(X)",
210
+ origin: "vendor-docs",
211
+ },
212
+ char_length: {
213
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
214
+ description: "Gets the number of characters in a `STRING` value.",
215
+ origin: "vendor-docs",
216
+ },
217
+ character_length: {
218
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
219
+ description: "Synonym for [CHAR_LENGTH][string-link-to-char-length].",
220
+ origin: "vendor-docs",
221
+ },
222
+ chr: {
223
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
224
+ description: "Takes a Unicode [code point][string-link-to-code-points-wikipedia] and returns the character that matches the code point.",
225
+ origin: "vendor-docs",
226
+ },
227
+ coalesce: {
228
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conditional_expressions#coalesce",
229
+ description: "Returns the value of the first non-`NULL` expression, if any, otherwise `NULL`.",
230
+ origin: "vendor-docs",
231
+ },
232
+ code_points_to_bytes: {
233
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
234
+ description: "Takes an array of extended ASCII [code points][string-link-to-code-points-wikipedia] as `ARRAY<INT64>` and returns `BYTES`.",
235
+ origin: "vendor-docs",
236
+ },
237
+ code_points_to_string: {
238
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
239
+ description: "Takes an array of Unicode [code points][string-link-to-code-points-wikipedia] as `ARRAY<INT64>` and returns a `STRING`.",
240
+ origin: "vendor-docs",
241
+ },
242
+ collate: {
243
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
244
+ origin: "vendor-docs",
245
+ },
246
+ concat: {
247
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
248
+ description: "Concatenates one or more values into a single result.",
249
+ origin: "vendor-docs",
250
+ },
251
+ cos: {
252
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#cos",
253
+ description: "Computes the cosine of X where X is specified in radians.",
254
+ origin: "vendor-docs",
255
+ },
256
+ cosh: {
257
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#cosh",
258
+ description: "Computes the hyperbolic cosine of X where X is specified in radians.",
259
+ origin: "vendor-docs",
260
+ },
261
+ cosine_distance: {
262
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#cosine_distance",
263
+ description: "Computes the [cosine distance][wiki-cosine-distance] between two vectors.",
264
+ origin: "vendor-docs",
265
+ },
266
+ cot: {
267
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#cot",
268
+ description: "Computes the cotangent for the angle of `X`, where `X` is specified in radians.",
269
+ origin: "vendor-docs",
270
+ },
271
+ coth: {
272
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#coth",
273
+ description: "Computes the hyperbolic cotangent for the angle of `X`, where `X` is specified in radians.",
274
+ origin: "vendor-docs",
275
+ },
276
+ count: {
277
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#count",
278
+ description: "Gets the number of rows in the input or the number of rows with an expression evaluated to any value other than `NULL`.",
279
+ origin: "vendor-docs",
280
+ },
281
+ csc: {
282
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#csc",
283
+ description: "Computes the cosecant of the input angle, which is in radians.",
284
+ origin: "vendor-docs",
285
+ },
286
+ csch: {
287
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#csch",
288
+ description: "Computes the hyperbolic cosecant of the input angle, which is in radians.",
289
+ origin: "vendor-docs",
290
+ },
291
+ cume_dist: {
292
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
293
+ description: "Return the relative rank of a row defined as NP/NR.",
294
+ origin: "vendor-docs",
295
+ },
296
+ current_date: {
297
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
298
+ description: "Returns the current date as a `DATE` object.",
299
+ origin: "vendor-docs",
300
+ },
301
+ current_timestamp: {
302
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
303
+ description: "Returns the current date and time as a timestamp object.",
304
+ origin: "vendor-docs",
305
+ },
306
+ date: {
307
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
308
+ description: "Constructs or extracts a date.",
309
+ origin: "vendor-docs",
310
+ },
311
+ date_bucket: {
312
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/time-series-functions",
313
+ description: "Gets the lower bound of the date bucket that contains a date.",
314
+ origin: "vendor-docs",
315
+ },
316
+ date_diff: {
317
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
318
+ description: "Gets the number of unit boundaries between two `DATE` values (`end_date` - `start_date`) at a particular time granularity.",
319
+ origin: "vendor-docs",
320
+ },
321
+ date_from_unix_date: {
322
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
323
+ description: "Interprets `int64_expression` as the number of days since 1970-01-01.",
324
+ origin: "vendor-docs",
325
+ },
326
+ date_trunc: {
327
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
328
+ description: "Truncates a `DATE`, `DATETIME`, or `TIMESTAMP` value at a particular granularity.",
329
+ origin: "vendor-docs",
330
+ },
331
+ datetime_bucket: {
332
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/time-series-functions",
333
+ description: "Gets the lower bound of the datetime bucket that contains a datetime.",
334
+ origin: "vendor-docs",
335
+ },
336
+ datetime_diff: {
337
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
338
+ description: "Gets the number of unit boundaries between two `DATETIME` values (`end_datetime` - `start_datetime`) at a particular time granularity.",
339
+ origin: "vendor-docs",
340
+ },
341
+ datetime_trunc: {
342
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
343
+ description: "Truncates a `DATETIME` or `TIMESTAMP` value at a particular granularity.",
344
+ origin: "vendor-docs",
345
+ },
346
+ dense_rank: {
347
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
348
+ description: "Returns the ordinal (1-based) rank of each row within the window partition.",
349
+ origin: "vendor-docs",
350
+ },
351
+ destination_node_id: {
352
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
353
+ description: "Gets a unique identifier of a graph edge's destination node.",
354
+ origin: "vendor-docs",
355
+ },
356
+ div: {
357
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#div",
358
+ description: "Returns the result of integer division of X by Y.",
359
+ origin: "vendor-docs",
360
+ },
361
+ edges: {
362
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
363
+ description: "Gets the edges in a graph path.",
364
+ origin: "vendor-docs",
365
+ },
366
+ element_definition_name: {
367
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
368
+ description: "Returns the name of the graph element table underlying the graph element.",
369
+ origin: "vendor-docs",
370
+ },
371
+ element_id: {
372
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
373
+ description: "Gets a graph element's unique identifier.",
374
+ origin: "vendor-docs",
375
+ },
376
+ ends_with: {
377
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
378
+ description: "Takes two `STRING` or `BYTES` values.",
379
+ origin: "vendor-docs",
380
+ },
381
+ enum_value_descriptor_proto: {
382
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/protocol_buffer_functions",
383
+ description: "Gets the enum value descriptor proto (`proto2.EnumValueDescriptorProto`) for an enum.",
384
+ origin: "vendor-docs",
385
+ },
386
+ error: {
387
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/debugging_functions",
388
+ description: "Returns an error.",
389
+ origin: "vendor-docs",
390
+ },
391
+ euclidean_distance: {
392
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#euclidean_distance",
393
+ description: "Computes the [Euclidean distance][wiki-euclidean-distance] between two vectors.",
394
+ origin: "vendor-docs",
395
+ },
396
+ exp: {
397
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#exp",
398
+ description: "Computes *e* to the power of X, also called the natural exponential function.",
399
+ origin: "vendor-docs",
400
+ },
401
+ farm_fingerprint: {
402
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/hash_functions",
403
+ description: "Computes the fingerprint of the `STRING` or `BYTES` input using the `Fingerprint64` function from the [open-source FarmHash library][hash-link-to-farmhash-github].",
404
+ origin: "vendor-docs",
405
+ },
406
+ flatten: {
407
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
408
+ description: "Takes an array of nested data and flattens a specific part of it into a single, flat array with the [array elements field access operator][array-el-field-operator].",
409
+ origin: "vendor-docs",
410
+ },
411
+ floor: {
412
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#floor",
413
+ description: "Returns the largest integral value that isn't greater than X.",
414
+ origin: "vendor-docs",
415
+ },
416
+ format: {
417
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
418
+ description: "`FORMAT` formats a data type expression as a string.",
419
+ origin: "vendor-docs",
420
+ },
421
+ format_date: {
422
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
423
+ description: "Formats a `DATE` value according to a specified format string.",
424
+ origin: "vendor-docs",
425
+ },
426
+ format_datetime: {
427
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
428
+ description: "Formats a `DATETIME` value according to a specified format string.",
429
+ origin: "vendor-docs",
430
+ },
431
+ format_time: {
432
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/time_functions",
433
+ description: "Formats a `TIME` value according to the specified format string.",
434
+ origin: "vendor-docs",
435
+ },
436
+ format_timestamp: {
437
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
438
+ description: "Formats a `TIMESTAMP` value according to the specified format string.",
439
+ origin: "vendor-docs",
440
+ },
441
+ from_base32: {
442
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
443
+ description: "Converts the base32-encoded input `string_expr` into `BYTES` format.",
444
+ origin: "vendor-docs",
445
+ },
446
+ from_base64: {
447
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
448
+ description: "Converts the base64-encoded input `string_expr` into `BYTES` format.",
449
+ origin: "vendor-docs",
450
+ },
451
+ from_hex: {
452
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
453
+ description: "Converts a hexadecimal-encoded `STRING` into `BYTES` format.",
454
+ origin: "vendor-docs",
455
+ },
456
+ from_proto: {
457
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/protocol_buffer_functions",
458
+ description: "Returns a GoogleSQL value.",
459
+ origin: "vendor-docs",
460
+ },
461
+ generate_array: {
462
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions",
463
+ description: "Returns an array of values.",
464
+ origin: "vendor-docs",
465
+ },
466
+ generate_range_array: {
467
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/range-functions",
468
+ description: "Splits a range into an array of subranges.",
469
+ origin: "vendor-docs",
470
+ },
471
+ grouping: {
472
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions",
473
+ description: "If a groupable item in the [`GROUP BY` clause][group-by-clause] is aggregated (and thus not grouped), this function returns `1`.",
474
+ origin: "vendor-docs",
475
+ },
476
+ ieee_divide: {
477
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#ieee_divide",
478
+ description: "Divides X by Y; this function never fails.",
479
+ origin: "vendor-docs",
480
+ },
481
+ if: {
482
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conditional_expressions#if",
483
+ description: "If `expr` evaluates to `TRUE`, returns `true_result`, else returns the evaluation for `else_result`.",
484
+ origin: "vendor-docs",
485
+ },
486
+ iferror: {
487
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/debugging_functions",
488
+ description: "Evaluates `try_expression`.",
489
+ origin: "vendor-docs",
490
+ },
491
+ ifnull: {
492
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conditional_expressions#ifnull",
493
+ description: "If `expr` evaluates to `NULL`, returns `null_result`.",
494
+ origin: "vendor-docs",
495
+ },
496
+ initcap: {
497
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
498
+ description: "Takes a `STRING` and returns it with the first character in each word in uppercase and all other characters in lowercase.",
499
+ origin: "vendor-docs",
500
+ },
501
+ instr: {
502
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
503
+ description: "Returns the lowest 1-based position of `subvalue` in `value`.",
504
+ origin: "vendor-docs",
505
+ },
506
+ int32: {
507
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#int32_for_json",
508
+ description: "Converts a JSON number to a SQL `INT32` value.",
509
+ origin: "vendor-docs",
510
+ },
511
+ int32_array: {
512
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#int32_array_for_json",
513
+ description: "Converts a JSON number to a SQL `INT32_ARRAY` value.",
514
+ origin: "vendor-docs",
515
+ },
516
+ int64: {
517
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#int64_for_json",
518
+ description: "Converts a JSON number to a SQL `INT64` value.",
519
+ origin: "vendor-docs",
520
+ },
521
+ int64_array: {
522
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#int64_array_for_json",
523
+ description: "Converts a JSON array of numbers to a SQL `INT64_ARRAY` value.",
524
+ origin: "vendor-docs",
525
+ },
526
+ is_acyclic: {
527
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
528
+ description: "Checks if a graph path has a repeating node.",
529
+ origin: "vendor-docs",
530
+ },
531
+ is_first: {
532
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
533
+ description: "Returns `true` if the current row is in the first `k` rows (1-based) in the window; otherwise, returns `false`.",
534
+ origin: "vendor-docs",
535
+ },
536
+ is_inf: {
537
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#is_inf",
538
+ description: "Returns `TRUE` if the value is positive or negative infinity.",
539
+ origin: "vendor-docs",
540
+ },
541
+ is_last: {
542
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
543
+ description: "Returns `true` if the current row is in the last `k` rows (1-based) in the window; otherwise, returns `false`.",
544
+ origin: "vendor-docs",
545
+ },
546
+ is_nan: {
547
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#is_nan",
548
+ description: "Returns `TRUE` if the value is a `NaN` value.",
549
+ origin: "vendor-docs",
550
+ },
551
+ is_simple: {
552
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
553
+ description: "Checks if a graph path is simple.",
554
+ origin: "vendor-docs",
555
+ },
556
+ is_trail: {
557
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
558
+ description: "Checks if a graph path has a repeating edge.",
559
+ origin: "vendor-docs",
560
+ },
561
+ iserror: {
562
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/debugging_functions",
563
+ description: "Evaluates `try_expression`.",
564
+ origin: "vendor-docs",
565
+ },
566
+ json_contains: {
567
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_contains",
568
+ description: "Checks if a JSON document contains another JSON document.",
569
+ origin: "vendor-docs",
570
+ },
571
+ json_extract: {
572
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_extract",
573
+ description: "Extracts a JSON value and converts it to a SQL JSON-formatted `STRING` or `JSON` value.",
574
+ origin: "vendor-docs",
575
+ },
576
+ json_extract_array: {
577
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_extract_array",
578
+ description: "Extracts a JSON array and converts it to a SQL `ARRAY<JSON-formatted STRING>` or `ARRAY<JSON>` value.",
579
+ origin: "vendor-docs",
580
+ },
581
+ json_extract_scalar: {
582
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_extract_scalar",
583
+ description: "Extracts a JSON scalar value and converts it to a SQL `STRING` value.",
584
+ origin: "vendor-docs",
585
+ },
586
+ json_extract_string_array: {
587
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_extract_string_array",
588
+ description: "Extracts a JSON array of scalar values and converts it to a SQL `ARRAY<STRING>` value.",
589
+ origin: "vendor-docs",
590
+ },
591
+ json_flatten: {
592
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_flatten",
593
+ description: "Produces a new SQL `ARRAY<JSON>` value containing all non-array values that are either directly in the input JSON value or children of one or more consecutively nested arrays in the input JSON value.",
594
+ origin: "vendor-docs",
595
+ },
596
+ json_object: {
597
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_object",
598
+ description: "Creates a JSON object, using key-value pairs.",
599
+ origin: "vendor-docs",
600
+ },
601
+ json_query: {
602
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_query",
603
+ description: "Extracts a JSON value and converts it to a SQL JSON-formatted `STRING` or `JSON` value.",
604
+ origin: "vendor-docs",
605
+ },
606
+ json_query_array: {
607
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_query_array",
608
+ description: "Extracts a JSON array and converts it to a SQL `ARRAY<JSON-formatted STRING>` or `ARRAY<JSON>` value.",
609
+ origin: "vendor-docs",
610
+ },
611
+ json_remove: {
612
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_remove",
613
+ origin: "vendor-docs",
614
+ },
615
+ json_type: {
616
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_type",
617
+ description: "Gets the JSON type of the outermost JSON value and converts the name of this type to a SQL `STRING` value.",
618
+ origin: "vendor-docs",
619
+ },
620
+ json_value: {
621
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_value",
622
+ description: "Extracts a JSON scalar value and converts it to a SQL `STRING` value.",
623
+ origin: "vendor-docs",
624
+ },
625
+ json_value_array: {
626
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#json_value_array",
627
+ description: "Extracts a JSON array of scalar values and converts it to a SQL `ARRAY<STRING>` value.",
628
+ origin: "vendor-docs",
629
+ },
630
+ justify_days: {
631
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/interval_functions",
632
+ description: "Normalizes the day part of the interval to the range from -29 to 29 by incrementing/decrementing the month or year part of the interval.",
633
+ origin: "vendor-docs",
634
+ },
635
+ justify_hours: {
636
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/interval_functions",
637
+ description: "Normalizes the time part of the interval to the range from -23:59:59.999999 to 23:59:59.999999 by incrementing/decrementing the day part of the interval.",
638
+ origin: "vendor-docs",
639
+ },
640
+ justify_interval: {
641
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/interval_functions",
642
+ description: "Normalizes the days and time parts of the interval.",
643
+ origin: "vendor-docs",
644
+ },
645
+ labels: {
646
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
647
+ description: "Gets the labels associated with a graph element and preserves the original case of each label.",
648
+ origin: "vendor-docs",
649
+ },
650
+ lag: {
651
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/navigation_functions",
652
+ description: "Returns the value of the `value_expression` on a preceding row.",
653
+ origin: "vendor-docs",
654
+ },
655
+ last_day: {
656
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
657
+ description: "Returns the last day from a datetime expression that contains the date.",
658
+ origin: "vendor-docs",
659
+ },
660
+ lax_bool: {
661
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_bool",
662
+ description: "Attempts to convert a JSON value to a SQL `BOOL` value.",
663
+ origin: "vendor-docs",
664
+ },
665
+ lax_bool_array: {
666
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_bool_array",
667
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<BOOL>` value.",
668
+ origin: "vendor-docs",
669
+ },
670
+ lax_double: {
671
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_double",
672
+ description: "Attempts to convert a JSON value to a SQL `DOUBLE` value.",
673
+ origin: "vendor-docs",
674
+ },
675
+ lax_double_array: {
676
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_double_array",
677
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<DOUBLE>` value.",
678
+ origin: "vendor-docs",
679
+ },
680
+ lax_float: {
681
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_float",
682
+ description: "Attempts to convert a JSON value to a SQL `FLOAT` value.",
683
+ origin: "vendor-docs",
684
+ },
685
+ lax_float_array: {
686
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_float_array",
687
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<FLOAT>` value.",
688
+ origin: "vendor-docs",
689
+ },
690
+ lax_int32: {
691
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_int32",
692
+ description: "Attempts to convert a JSON value to a SQL `INT32` value.",
693
+ origin: "vendor-docs",
694
+ },
695
+ lax_int32_array: {
696
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_int32_array",
697
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<INT32>` value.",
698
+ origin: "vendor-docs",
699
+ },
700
+ lax_int64: {
701
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_int64",
702
+ description: "Attempts to convert a JSON value to a SQL `INT64` value.",
703
+ origin: "vendor-docs",
704
+ },
705
+ lax_int64_array: {
706
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_int64_array",
707
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<INT64>` value.",
708
+ origin: "vendor-docs",
709
+ },
710
+ lax_string: {
711
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_string",
712
+ description: "Attempts to convert a JSON value to a SQL `STRING` value.",
713
+ origin: "vendor-docs",
714
+ },
715
+ lax_string_array: {
716
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_string_array",
717
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<STRING>` value.",
718
+ origin: "vendor-docs",
719
+ },
720
+ lax_uint32: {
721
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_uint32",
722
+ description: "Attempts to convert a JSON value to a SQL `UINT32` value.",
723
+ origin: "vendor-docs",
724
+ },
725
+ lax_uint32_array: {
726
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_uint32_array",
727
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<UINT32>` value.",
728
+ origin: "vendor-docs",
729
+ },
730
+ lax_uint64: {
731
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_uint64",
732
+ description: "Attempts to convert a JSON value to a SQL `UINT64` value.",
733
+ origin: "vendor-docs",
734
+ },
735
+ lax_uint64_array: {
736
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#lax_uint64_array",
737
+ description: "Attempts to convert a JSON value to a SQL `ARRAY<UINT64>` value.",
738
+ origin: "vendor-docs",
739
+ },
740
+ lead: {
741
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/navigation_functions",
742
+ description: "Returns the value of the `value_expression` on a subsequent row.",
743
+ origin: "vendor-docs",
744
+ },
745
+ left: {
746
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
747
+ description: "Returns a `STRING` or `BYTES` value that consists of the specified number of leftmost characters or bytes from `value`.",
748
+ origin: "vendor-docs",
749
+ },
750
+ length: {
751
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
752
+ description: "Returns the length of the `STRING` or `BYTES` value.",
753
+ origin: "vendor-docs",
754
+ },
755
+ ln: {
756
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#ln",
757
+ description: "Computes the natural logarithm of X.",
758
+ origin: "vendor-docs",
759
+ },
760
+ log: {
761
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#log",
762
+ description: "If only X is present, `LOG` is a synonym of `LN`.",
763
+ origin: "vendor-docs",
764
+ },
765
+ log10: {
766
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#log10",
767
+ description: "Similar to `LOG`, but computes logarithm to base 10.",
768
+ origin: "vendor-docs",
769
+ },
770
+ lower: {
771
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
772
+ description: "For `STRING` arguments, returns the original string with all alphabetic characters in lowercase.",
773
+ origin: "vendor-docs",
774
+ },
775
+ lpad: {
776
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
777
+ description: "Returns a `STRING` or `BYTES` value that consists of `original_value` prepended with `pattern`.",
778
+ origin: "vendor-docs",
779
+ },
780
+ ltrim: {
781
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
782
+ description: "Identical to [TRIM][string-link-to-trim], but only removes leading characters.",
783
+ origin: "vendor-docs",
784
+ },
785
+ max: {
786
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#max",
787
+ description: "Returns the maximum non-`NULL` value in an aggregated group.",
788
+ origin: "vendor-docs",
789
+ },
790
+ md5: {
791
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/hash_functions",
792
+ description: "Computes the hash of the input using the [MD5 algorithm][hash-link-to-md5-wikipedia].",
793
+ origin: "vendor-docs",
794
+ },
795
+ min: {
796
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#min",
797
+ description: "Returns the minimum non-`NULL` value in an aggregated group.",
798
+ origin: "vendor-docs",
799
+ },
800
+ mod: {
801
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#mod",
802
+ description: "Modulo function: returns the remainder of the division of X by Y.",
803
+ origin: "vendor-docs",
804
+ },
805
+ months_between: {
806
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
807
+ description: "Returns the number of whole and partial months between `datetime_end` and `datetime_start`, represented as a floating-point number.",
808
+ origin: "vendor-docs",
809
+ },
810
+ next_day: {
811
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
812
+ description: "Returns the `DATE` of the first weekday named `day_of_week` that is later than `datetime`.",
813
+ origin: "vendor-docs",
814
+ },
815
+ nodes: {
816
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
817
+ description: "Gets the nodes in a graph path.",
818
+ origin: "vendor-docs",
819
+ },
820
+ normalize: {
821
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
822
+ description: "Takes a string value and returns it as a normalized string.",
823
+ origin: "vendor-docs",
824
+ },
825
+ normalize_and_casefold: {
826
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
827
+ description: "Takes a string value and returns it as a normalized string.",
828
+ origin: "vendor-docs",
829
+ },
830
+ ntile: {
831
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
832
+ description: "This function divides the rows into `constant_integer_expression` buckets based on row ordering and returns the 1-based bucket number that is assigned to each row.",
833
+ origin: "vendor-docs",
834
+ },
835
+ nullif: {
836
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conditional_expressions#nullif",
837
+ description: "Returns `NULL` if `expr = expr_to_match` evaluates to `TRUE`, otherwise returns `expr`.",
838
+ origin: "vendor-docs",
839
+ },
840
+ nulliferror: {
841
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/debugging_functions",
842
+ description: "Evaluates `try_expression`.",
843
+ origin: "vendor-docs",
844
+ },
845
+ nullifzero: {
846
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conditional_expressions#nullifzero",
847
+ description: "Returns `NULL` if the value of `expr` is `0`.",
848
+ origin: "vendor-docs",
849
+ },
850
+ octet_length: {
851
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
852
+ origin: "vendor-docs",
853
+ },
854
+ parse_bignumeric: {
855
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conversion_functions",
856
+ description: "Converts a `STRING` to a `BIGNUMERIC` value.",
857
+ origin: "vendor-docs",
858
+ },
859
+ parse_date: {
860
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
861
+ description: "Converts a `STRING` value to a `DATE` value.",
862
+ origin: "vendor-docs",
863
+ },
864
+ parse_datetime: {
865
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/datetime_functions",
866
+ description: "Converts a `STRING` value to a `DATETIME` value.",
867
+ origin: "vendor-docs",
868
+ },
869
+ parse_numeric: {
870
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conversion_functions",
871
+ description: "Converts a `STRING` to a `NUMERIC` value.",
872
+ origin: "vendor-docs",
873
+ },
874
+ parse_time: {
875
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/time_functions",
876
+ description: "Converts a `STRING` value to a `TIME` value.",
877
+ origin: "vendor-docs",
878
+ },
879
+ parse_timestamp: {
880
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
881
+ description: "Converts a `STRING` value to a `TIMESTAMP` value.",
882
+ origin: "vendor-docs",
883
+ },
884
+ path: {
885
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
886
+ description: "Creates a graph path from a list of graph elements.",
887
+ origin: "vendor-docs",
888
+ },
889
+ path_first: {
890
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
891
+ description: "Gets the first node in a graph path.",
892
+ origin: "vendor-docs",
893
+ },
894
+ path_last: {
895
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
896
+ description: "Gets the last node in a graph path.",
897
+ origin: "vendor-docs",
898
+ },
899
+ path_length: {
900
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
901
+ description: "Gets the number of edges in a graph path.",
902
+ origin: "vendor-docs",
903
+ },
904
+ percent_rank: {
905
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
906
+ description: "Return the percentile rank of a row defined as (RK-1)/(NR-1), where RK is the `RANK` of the row and NR is the number of rows in the partition.",
907
+ origin: "vendor-docs",
908
+ },
909
+ pi: {
910
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#pi",
911
+ description: "Returns the mathematical constant `π` as a `DOUBLE` value.",
912
+ origin: "vendor-docs",
913
+ },
914
+ pi_bignumeric: {
915
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#pi_bignumeric",
916
+ description: "Returns the mathematical constant `π` as a `BIGNUMERIC` value.",
917
+ origin: "vendor-docs",
918
+ },
919
+ pi_numeric: {
920
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#pi_numeric",
921
+ description: "Returns the mathematical constant `π` as a `NUMERIC` value.",
922
+ origin: "vendor-docs",
923
+ },
924
+ pow: {
925
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#pow",
926
+ description: "Returns the value of X raised to the power of Y.",
927
+ origin: "vendor-docs",
928
+ },
929
+ power: {
930
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#power",
931
+ description: "Synonym of [`POW(X, Y)`][pow].",
932
+ origin: "vendor-docs",
933
+ },
934
+ property_names: {
935
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
936
+ description: "Gets the name of each property associated with a graph element and preserves the original case of each name.",
937
+ origin: "vendor-docs",
938
+ },
939
+ proto_default_if_null: {
940
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/protocol_buffer_functions",
941
+ description: "Evaluates any expression that results in a proto field access.",
942
+ origin: "vendor-docs",
943
+ },
944
+ proto_map_contains_key: {
945
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/protocol_buffer_functions",
946
+ description: "Returns whether a [protocol buffer map field][proto-map] contains a given key.",
947
+ origin: "vendor-docs",
948
+ },
949
+ proto_modify_map: {
950
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/protocol_buffer_functions",
951
+ description: "Modifies a [protocol buffer map field][proto-map] and returns the modified map field.",
952
+ origin: "vendor-docs",
953
+ },
954
+ rand: {
955
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#rand",
956
+ description: "Generates a pseudo-random value of type `DOUBLE` in the range of [0, 1), inclusive of 0 and exclusive of 1.",
957
+ origin: "vendor-docs",
958
+ },
959
+ range: {
960
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/range-functions",
961
+ description: "Constructs a range of [`DATE`][date-type], [`DATETIME`][datetime-type], or [`TIMESTAMP`][timestamp-type] values.",
962
+ origin: "vendor-docs",
963
+ },
964
+ range_bucket: {
965
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#range_bucket",
966
+ description: "`RANGE_BUCKET` scans through a sorted array and returns the 0-based position of the point's upper bound.",
967
+ origin: "vendor-docs",
968
+ },
969
+ range_contains: {
970
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/range-functions",
971
+ description: "Checks if the inner range is in the outer range.",
972
+ origin: "vendor-docs",
973
+ },
974
+ range_end: {
975
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/range-functions",
976
+ description: "Gets the upper bound of a range.",
977
+ origin: "vendor-docs",
978
+ },
979
+ range_intersect: {
980
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/range-functions",
981
+ description: "Gets a segment of two ranges that intersect.",
982
+ origin: "vendor-docs",
983
+ },
984
+ range_overlaps: {
985
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/range-functions",
986
+ description: "Checks if two ranges overlap.",
987
+ origin: "vendor-docs",
988
+ },
989
+ range_start: {
990
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/range-functions",
991
+ description: "Gets the lower bound of a range.",
992
+ origin: "vendor-docs",
993
+ },
994
+ rank: {
995
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
996
+ description: "Returns the ordinal (1-based) rank of each row within the ordered partition.",
997
+ origin: "vendor-docs",
998
+ },
999
+ regexp_contains: {
1000
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1001
+ description: "Returns `TRUE` if `value` is a partial match for the regular expression, `regexp`.",
1002
+ origin: "vendor-docs",
1003
+ },
1004
+ regexp_extract: {
1005
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1006
+ description: "Returns the substring in `value` that matches the [re2 regular expression][string-link-to-re2], `regexp`.",
1007
+ origin: "vendor-docs",
1008
+ },
1009
+ regexp_extract_all: {
1010
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1011
+ description: "Returns an array of all substrings of `value` that match the [re2 regular expression][string-link-to-re2], `regexp`.",
1012
+ origin: "vendor-docs",
1013
+ },
1014
+ regexp_extract_groups: {
1015
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1016
+ description: "Returns a `STRUCT` where each field contains a substring from `value` that matches a capturing group in the [re2 regular expression][string-link-to-re2], `regexp`.",
1017
+ origin: "vendor-docs",
1018
+ },
1019
+ regexp_match: {
1020
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1021
+ origin: "vendor-docs",
1022
+ },
1023
+ regexp_replace: {
1024
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1025
+ description: "Returns a `STRING` where all substrings of `value` that match regular expression `regexp` are replaced with `replacement`.",
1026
+ origin: "vendor-docs",
1027
+ },
1028
+ regexp_substr: {
1029
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1030
+ description: "Synonym for [REGEXP_EXTRACT][string-link-to-regex].",
1031
+ origin: "vendor-docs",
1032
+ },
1033
+ repeat: {
1034
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1035
+ description: "Returns a `STRING` or `BYTES` value that consists of `original_value`, repeated.",
1036
+ origin: "vendor-docs",
1037
+ },
1038
+ replace: {
1039
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1040
+ description: "Replaces all occurrences of `from_pattern` with `to_pattern` in `original_value`.",
1041
+ origin: "vendor-docs",
1042
+ },
1043
+ reverse: {
1044
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1045
+ description: "Returns the reverse of the input `STRING` or `BYTES`.",
1046
+ origin: "vendor-docs",
1047
+ },
1048
+ right: {
1049
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1050
+ description: "Returns a `STRING` or `BYTES` value that consists of the specified number of rightmost characters or bytes from `value`.",
1051
+ origin: "vendor-docs",
1052
+ },
1053
+ round: {
1054
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#round",
1055
+ description: "If only X is present, rounds X to the nearest integer.",
1056
+ origin: "vendor-docs",
1057
+ },
1058
+ row_number: {
1059
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/numbering_functions",
1060
+ description: "Returns the sequential row ordinal (1-based) of each row for each ordered partition.",
1061
+ origin: "vendor-docs",
1062
+ },
1063
+ rpad: {
1064
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1065
+ description: "Returns a `STRING` or `BYTES` value that consists of `original_value` appended with `pattern`.",
1066
+ origin: "vendor-docs",
1067
+ },
1068
+ rtrim: {
1069
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1070
+ description: "Identical to [TRIM][string-link-to-trim], but only removes trailing characters.",
1071
+ origin: "vendor-docs",
1072
+ },
1073
+ safe_add: {
1074
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#safe_add",
1075
+ description: "Equivalent to the addition operator (`+`), but returns `NULL` if overflow occurs.",
1076
+ origin: "vendor-docs",
1077
+ },
1078
+ safe_cast: {
1079
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conversion_functions#safe_casting",
1080
+ description: "When using `CAST`, a query can fail if GoogleSQL is unable to perform the cast.",
1081
+ origin: "vendor-docs",
1082
+ },
1083
+ safe_convert_bytes_to_string: {
1084
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1085
+ description: "Converts a sequence of `BYTES` to a `STRING`.",
1086
+ origin: "vendor-docs",
1087
+ },
1088
+ safe_divide: {
1089
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#safe_divide",
1090
+ description: "Equivalent to the division operator (`X / Y`), but returns `NULL` if an error occurs, such as a division by zero error.",
1091
+ origin: "vendor-docs",
1092
+ },
1093
+ safe_multiply: {
1094
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#safe_multiply",
1095
+ description: "Equivalent to the multiplication operator (`*`), but returns `NULL` if overflow occurs.",
1096
+ origin: "vendor-docs",
1097
+ },
1098
+ safe_negate: {
1099
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#safe_negate",
1100
+ description: "Equivalent to the unary minus operator (`-`), but returns `NULL` if overflow occurs.",
1101
+ origin: "vendor-docs",
1102
+ },
1103
+ safe_subtract: {
1104
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#safe_subtract",
1105
+ description: "Returns the result of Y subtracted from X.",
1106
+ origin: "vendor-docs",
1107
+ },
1108
+ safe_to_json: {
1109
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#safe_to_json",
1110
+ description: "Similar to the `TO_JSON` function, but for each unsupported field in the input argument, produces a JSON null instead of an error.",
1111
+ origin: "vendor-docs",
1112
+ },
1113
+ sec: {
1114
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#sec",
1115
+ description: "Computes the secant for the angle of `X`, where `X` is specified in radians.",
1116
+ origin: "vendor-docs",
1117
+ },
1118
+ sech: {
1119
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#sech",
1120
+ description: "Computes the hyperbolic secant for the angle of `X`, where `X` is specified in radians.",
1121
+ origin: "vendor-docs",
1122
+ },
1123
+ session_user: {
1124
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/security_functions",
1125
+ description: "For first-party users, returns the email address of the user that's running the query.",
1126
+ origin: "vendor-docs",
1127
+ },
1128
+ sha1: {
1129
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/hash_functions",
1130
+ description: "Computes the hash of the input using the [SHA-1 algorithm][hash-link-to-sha-1-wikipedia].",
1131
+ origin: "vendor-docs",
1132
+ },
1133
+ sha256: {
1134
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/hash_functions",
1135
+ description: "Computes the hash of the input using the [SHA-256 algorithm][hash-link-to-sha-2-wikipedia].",
1136
+ origin: "vendor-docs",
1137
+ },
1138
+ sha512: {
1139
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/hash_functions",
1140
+ description: "Computes the hash of the input using the [SHA-512 algorithm][hash-link-to-sha-2-wikipedia].",
1141
+ origin: "vendor-docs",
1142
+ },
1143
+ sign: {
1144
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#sign",
1145
+ description: "Returns `-1`, `0`, or `+1` for negative, zero and positive arguments respectively.",
1146
+ origin: "vendor-docs",
1147
+ },
1148
+ sin: {
1149
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#sin",
1150
+ description: "Computes the sine of X where X is specified in radians.",
1151
+ origin: "vendor-docs",
1152
+ },
1153
+ sinh: {
1154
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#sinh",
1155
+ description: "Computes the hyperbolic sine of X where X is specified in radians.",
1156
+ origin: "vendor-docs",
1157
+ },
1158
+ soundex: {
1159
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1160
+ description: "Returns a `STRING` that represents the [Soundex][string-link-to-soundex-wikipedia] code for `value`.",
1161
+ origin: "vendor-docs",
1162
+ },
1163
+ source_node_id: {
1164
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/graph-gql-functions",
1165
+ description: "Gets a unique identifier of a graph edge's source node.",
1166
+ origin: "vendor-docs",
1167
+ },
1168
+ split: {
1169
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1170
+ description: "Splits a `STRING` or `BYTES` value, using a delimiter.",
1171
+ origin: "vendor-docs",
1172
+ },
1173
+ split_substr: {
1174
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1175
+ description: "Returns a substring from an input `STRING` that's determined by a delimiter, a location that indicates the first split of the substring to return, and the number of splits to include in the returned substring.",
1176
+ origin: "vendor-docs",
1177
+ },
1178
+ sqrt: {
1179
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#sqrt",
1180
+ description: "Computes the square root of X.",
1181
+ origin: "vendor-docs",
1182
+ },
1183
+ st_angle: {
1184
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_angle",
1185
+ description: "Takes three point `GEOGRAPHY` values, which represent two intersecting lines.",
1186
+ origin: "vendor-docs",
1187
+ },
1188
+ st_area: {
1189
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_area",
1190
+ description: "Returns the area in square meters covered by the polygons in the input `GEOGRAPHY`.",
1191
+ origin: "vendor-docs",
1192
+ },
1193
+ st_asbinary: {
1194
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_asbinary",
1195
+ description: "Returns the [WKB][wkb-link] representation of an input `GEOGRAPHY`.",
1196
+ origin: "vendor-docs",
1197
+ },
1198
+ st_asgeojson: {
1199
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_asgeojson",
1200
+ description: "Returns the [RFC 7946][GeoJSON-spec-link] compliant [GeoJSON][geojson-link] representation of the input `GEOGRAPHY`.",
1201
+ origin: "vendor-docs",
1202
+ },
1203
+ st_askml: {
1204
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_askml",
1205
+ description: "Takes a `GEOGRAPHY` and returns a `STRING` [KML geometry][kml-geometry-link].",
1206
+ origin: "vendor-docs",
1207
+ },
1208
+ st_astext: {
1209
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_astext",
1210
+ description: "Returns the [WKT][wkt-link] representation of an input `GEOGRAPHY`.",
1211
+ origin: "vendor-docs",
1212
+ },
1213
+ st_azimuth: {
1214
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_azimuth",
1215
+ description: "Takes two point `GEOGRAPHY` values, and returns the azimuth of the line segment formed by points 1 and 2.",
1216
+ origin: "vendor-docs",
1217
+ },
1218
+ st_boundary: {
1219
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_boundary",
1220
+ description: "Returns a single `GEOGRAPHY` that contains the union of the boundaries of each component in the given input `GEOGRAPHY`.",
1221
+ origin: "vendor-docs",
1222
+ },
1223
+ st_boundingbox: {
1224
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_boundingbox",
1225
+ description: "Returns a `STRUCT` that represents the bounding box for the specified geography.",
1226
+ origin: "vendor-docs",
1227
+ },
1228
+ st_centroid: {
1229
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_centroid",
1230
+ description: "Returns the _centroid_ of the input `GEOGRAPHY` as a single point `GEOGRAPHY`.",
1231
+ origin: "vendor-docs",
1232
+ },
1233
+ st_closestpoint: {
1234
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_closestpoint",
1235
+ description: "Returns a `GEOGRAPHY` containing a point on `geography_1` with the smallest possible distance to `geography_2`.",
1236
+ origin: "vendor-docs",
1237
+ },
1238
+ st_clusterdbscan: {
1239
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_clusterdbscan",
1240
+ origin: "vendor-docs",
1241
+ },
1242
+ st_contains: {
1243
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_contains",
1244
+ description: "Returns `TRUE` if no point of `geography_2` is outside `geography_1`, and the interiors intersect; returns `FALSE` otherwise.",
1245
+ origin: "vendor-docs",
1246
+ },
1247
+ st_convexhull: {
1248
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_convexhull",
1249
+ description: "Returns the convex hull for the input `GEOGRAPHY`.",
1250
+ origin: "vendor-docs",
1251
+ },
1252
+ st_coveredby: {
1253
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_coveredby",
1254
+ description: "Returns `FALSE` if `geography_1` or `geography_2` is empty.",
1255
+ origin: "vendor-docs",
1256
+ },
1257
+ st_covers: {
1258
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_covers",
1259
+ description: "Returns `FALSE` if `geography_1` or `geography_2` is empty.",
1260
+ origin: "vendor-docs",
1261
+ },
1262
+ st_difference: {
1263
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_difference",
1264
+ description: "Returns a `GEOGRAPHY` that represents the point set difference of `geography_1` and `geography_2`.",
1265
+ origin: "vendor-docs",
1266
+ },
1267
+ st_dimension: {
1268
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_dimension",
1269
+ description: "Returns the dimension of the highest-dimensional element in the input `GEOGRAPHY`.",
1270
+ origin: "vendor-docs",
1271
+ },
1272
+ st_disjoint: {
1273
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_disjoint",
1274
+ description: "Returns `TRUE` if the intersection of `geography_1` and `geography_2` is empty, that is, no point in `geography_1` also appears in `geography_2`.",
1275
+ origin: "vendor-docs",
1276
+ },
1277
+ st_distance: {
1278
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_distance",
1279
+ description: "Returns the shortest distance in meters between two non-empty `GEOGRAPHY`s.",
1280
+ origin: "vendor-docs",
1281
+ },
1282
+ st_dump: {
1283
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_dump",
1284
+ description: "Returns an `ARRAY` of simple `GEOGRAPHY`s where each element is a component of the input `GEOGRAPHY`.",
1285
+ origin: "vendor-docs",
1286
+ },
1287
+ st_dumppoints: {
1288
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_dumppoints",
1289
+ description: "Takes an input geography and returns all of its points, line vertices, and polygon vertices as an array of point geographies.",
1290
+ origin: "vendor-docs",
1291
+ },
1292
+ st_dwithin: {
1293
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_dwithin",
1294
+ description: "Returns `TRUE` if the distance between at least one point in `geography_1` and one point in `geography_2` is less than or equal to the distance given by the `distance` argument; otherwise, returns `FALSE`.",
1295
+ origin: "vendor-docs",
1296
+ },
1297
+ st_endpoint: {
1298
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_endpoint",
1299
+ description: "Returns the last point of a linestring geography as a point geography.",
1300
+ origin: "vendor-docs",
1301
+ },
1302
+ st_equals: {
1303
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_equals",
1304
+ description: "Checks if two `GEOGRAPHY` values represent the same `GEOGRAPHY` value.",
1305
+ origin: "vendor-docs",
1306
+ },
1307
+ st_extent: {
1308
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_extent",
1309
+ description: "Returns a `STRUCT` that represents the bounding box for the set of input `GEOGRAPHY` values.",
1310
+ origin: "vendor-docs",
1311
+ },
1312
+ st_exteriorring: {
1313
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_exteriorring",
1314
+ description: "Returns a linestring geography that corresponds to the outermost ring of a polygon geography.",
1315
+ origin: "vendor-docs",
1316
+ },
1317
+ st_geogfrom: {
1318
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_geogfrom",
1319
+ description: "Converts an expression for a `STRING` or `BYTES` value into a `GEOGRAPHY` value.",
1320
+ origin: "vendor-docs",
1321
+ },
1322
+ st_geogfromkml: {
1323
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_geogfromkml",
1324
+ origin: "vendor-docs",
1325
+ },
1326
+ st_geogpoint: {
1327
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_geogpoint",
1328
+ description: "Creates a `GEOGRAPHY` with a single point.",
1329
+ origin: "vendor-docs",
1330
+ },
1331
+ st_geogpointfromgeohash: {
1332
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_geogpointfromgeohash",
1333
+ description: "Returns a `GEOGRAPHY` value that corresponds to a point in the middle of a bounding box defined in the [GeoHash][geohash-link].",
1334
+ origin: "vendor-docs",
1335
+ },
1336
+ st_geohash: {
1337
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_geohash",
1338
+ description: "Takes a single-point `GEOGRAPHY` and returns a [GeoHash][geohash-link] representation of that `GEOGRAPHY` object.",
1339
+ origin: "vendor-docs",
1340
+ },
1341
+ st_geometrytype: {
1342
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_geometrytype",
1343
+ description: "Returns the [Open Geospatial Consortium][ogc-link] (OGC) geometry type that describes the input `GEOGRAPHY`.",
1344
+ origin: "vendor-docs",
1345
+ },
1346
+ st_interiorrings: {
1347
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_interiorrings",
1348
+ description: "Returns an array of linestring geographies that corresponds to the interior rings of a polygon geography.",
1349
+ origin: "vendor-docs",
1350
+ },
1351
+ st_intersection: {
1352
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_intersection",
1353
+ description: "Returns a `GEOGRAPHY` that represents the point set intersection of the two input `GEOGRAPHY`s.",
1354
+ origin: "vendor-docs",
1355
+ },
1356
+ st_intersects: {
1357
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_intersects",
1358
+ description: "Returns `TRUE` if the point set intersection of `geography_1` and `geography_2` is non-empty.",
1359
+ origin: "vendor-docs",
1360
+ },
1361
+ st_intersectsbox: {
1362
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_intersectsbox",
1363
+ description: "Returns `TRUE` if `geography` intersects the rectangle between `[lng1, lng2]` and `[lat1, lat2]`.",
1364
+ origin: "vendor-docs",
1365
+ },
1366
+ st_isclosed: {
1367
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_isclosed",
1368
+ description: "Returns `TRUE` for a non-empty Geography, where each element in the Geography has an empty boundary.",
1369
+ origin: "vendor-docs",
1370
+ },
1371
+ st_iscollection: {
1372
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_iscollection",
1373
+ description: "Returns `TRUE` if the total number of points, linestrings, and polygons is greater than one.",
1374
+ origin: "vendor-docs",
1375
+ },
1376
+ st_isempty: {
1377
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_isempty",
1378
+ description: "Returns `TRUE` if the given `GEOGRAPHY` is empty; that is, the `GEOGRAPHY` doesn't contain any points, lines, or polygons.",
1379
+ origin: "vendor-docs",
1380
+ },
1381
+ st_isring: {
1382
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_isring",
1383
+ description: "Returns `TRUE` if the input `GEOGRAPHY` is a linestring and if the linestring is both [`ST_ISCLOSED`][st-isclosed] and simple.",
1384
+ origin: "vendor-docs",
1385
+ },
1386
+ st_length: {
1387
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_length",
1388
+ description: "Returns the total length in meters of the lines in the input `GEOGRAPHY`.",
1389
+ origin: "vendor-docs",
1390
+ },
1391
+ st_lineinterpolatepoint: {
1392
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_lineinterpolatepoint",
1393
+ description: "Gets a point at a specific fraction in a linestring `GEOGRAPHY` value.",
1394
+ origin: "vendor-docs",
1395
+ },
1396
+ st_linelocatepoint: {
1397
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_linelocatepoint",
1398
+ description: "Gets a section of a linestring between the start point and a selected point (a point on the linestring closest to the `point_geography` argument).",
1399
+ origin: "vendor-docs",
1400
+ },
1401
+ st_linesubstring: {
1402
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_linesubstring",
1403
+ description: "Gets a segment of a linestring at a specific starting and ending fraction.",
1404
+ origin: "vendor-docs",
1405
+ },
1406
+ st_makeline: {
1407
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_makeline",
1408
+ description: "Creates a `GEOGRAPHY` with a single linestring by concatenating the point or line vertices of each of the input `GEOGRAPHY`s in the order they are given.",
1409
+ origin: "vendor-docs",
1410
+ },
1411
+ st_makepolygon: {
1412
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_makepolygon",
1413
+ description: "Creates a `GEOGRAPHY` containing a single polygon from linestring inputs, where each input linestring is used to construct a polygon ring.",
1414
+ origin: "vendor-docs",
1415
+ },
1416
+ st_makepolygonoriented: {
1417
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_makepolygonoriented",
1418
+ description: "Like `ST_MAKEPOLYGON`, but the vertex ordering of each input linestring determines the orientation of each polygon ring.",
1419
+ origin: "vendor-docs",
1420
+ },
1421
+ st_maxdistance: {
1422
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_maxdistance",
1423
+ origin: "vendor-docs",
1424
+ },
1425
+ st_npoints: {
1426
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_npoints",
1427
+ description: "An alias of [ST_NUMPOINTS][st-numpoints].",
1428
+ origin: "vendor-docs",
1429
+ },
1430
+ st_numgeometries: {
1431
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_numgeometries",
1432
+ description: "Returns the number of geometries in the input `GEOGRAPHY`.",
1433
+ origin: "vendor-docs",
1434
+ },
1435
+ st_numpoints: {
1436
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_numpoints",
1437
+ description: "Returns the number of vertices in the input `GEOGRAPHY`.",
1438
+ origin: "vendor-docs",
1439
+ },
1440
+ st_perimeter: {
1441
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_perimeter",
1442
+ description: "Returns the length in meters of the boundary of the polygons in the input `GEOGRAPHY`.",
1443
+ origin: "vendor-docs",
1444
+ },
1445
+ st_pointn: {
1446
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_pointn",
1447
+ description: "Returns the Nth point of a linestring geography as a point geography, where N is the index.",
1448
+ origin: "vendor-docs",
1449
+ },
1450
+ st_simplify: {
1451
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_simplify",
1452
+ description: "Returns a simplified version of `geography`, the given input `GEOGRAPHY`.",
1453
+ origin: "vendor-docs",
1454
+ },
1455
+ st_snaptogrid: {
1456
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_snaptogrid",
1457
+ description: "Returns the input `GEOGRAPHY`, where each vertex has been snapped to a longitude/latitude grid.",
1458
+ origin: "vendor-docs",
1459
+ },
1460
+ st_startpoint: {
1461
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_startpoint",
1462
+ description: "Returns the first point of a linestring geography as a point geography.",
1463
+ origin: "vendor-docs",
1464
+ },
1465
+ st_touches: {
1466
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_touches",
1467
+ description: "Returns `TRUE` provided the following two conditions are satisfied.",
1468
+ origin: "vendor-docs",
1469
+ },
1470
+ st_union: {
1471
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_union",
1472
+ description: "Returns a `GEOGRAPHY` that represents the point set union of all input `GEOGRAPHY`s.",
1473
+ origin: "vendor-docs",
1474
+ },
1475
+ st_union_agg: {
1476
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_union_agg",
1477
+ description: "Returns a `GEOGRAPHY` that represents the point set union of all input `GEOGRAPHY`s.",
1478
+ origin: "vendor-docs",
1479
+ },
1480
+ st_within: {
1481
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_within",
1482
+ description: "Returns `TRUE` if no point of `geography_1` is outside of `geography_2` and the interiors of `geography_1` and `geography_2` intersect.",
1483
+ origin: "vendor-docs",
1484
+ },
1485
+ st_x: {
1486
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_x",
1487
+ description: "Returns the longitude in degrees of the single-point input `GEOGRAPHY`.",
1488
+ origin: "vendor-docs",
1489
+ },
1490
+ st_y: {
1491
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/geography_functions#st_y",
1492
+ description: "Returns the latitude in degrees of the single-point input `GEOGRAPHY`.",
1493
+ origin: "vendor-docs",
1494
+ },
1495
+ starts_with: {
1496
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1497
+ description: "Takes two `STRING` or `BYTES` values.",
1498
+ origin: "vendor-docs",
1499
+ },
1500
+ string: {
1501
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1502
+ description: "Converts a JSON string to a SQL `STRING` value.",
1503
+ origin: "vendor-docs",
1504
+ },
1505
+ string_agg: {
1506
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#string_agg",
1507
+ description: "Returns a value (either `STRING` or `BYTES`) obtained by concatenating non-`NULL` values.",
1508
+ origin: "vendor-docs",
1509
+ },
1510
+ string_array: {
1511
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#string_array_for_json",
1512
+ description: "Converts a JSON array of strings to a SQL `ARRAY<STRING>` value.",
1513
+ origin: "vendor-docs",
1514
+ },
1515
+ strpos: {
1516
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1517
+ description: "Takes two `STRING` or `BYTES` values.",
1518
+ origin: "vendor-docs",
1519
+ },
1520
+ substr: {
1521
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1522
+ description: "Gets a portion (substring) of the supplied `STRING` or `BYTES` value.",
1523
+ origin: "vendor-docs",
1524
+ },
1525
+ substring: {
1526
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1527
+ origin: "vendor-docs",
1528
+ },
1529
+ sum: {
1530
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/aggregate_functions#sum",
1531
+ description: "Returns the sum of non-`NULL` values in an aggregated group.",
1532
+ origin: "vendor-docs",
1533
+ },
1534
+ tan: {
1535
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#tan",
1536
+ description: "Computes the tangent of X where X is specified in radians.",
1537
+ origin: "vendor-docs",
1538
+ },
1539
+ tanh: {
1540
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#tanh",
1541
+ description: "Computes the hyperbolic tangent of X where X is specified in radians.",
1542
+ origin: "vendor-docs",
1543
+ },
1544
+ time_diff: {
1545
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/time_functions",
1546
+ description: "Gets the number of unit boundaries between two `TIME` values (`end_time` - `start_time`) at a particular time granularity.",
1547
+ origin: "vendor-docs",
1548
+ },
1549
+ time_trunc: {
1550
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/time_functions",
1551
+ description: "Truncates a `TIME` value at a particular granularity.",
1552
+ origin: "vendor-docs",
1553
+ },
1554
+ timestamp: {
1555
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1556
+ description: "+ `string_expression[, time_zone]`: Converts a string to a timestamp.",
1557
+ origin: "vendor-docs",
1558
+ },
1559
+ timestamp_bucket: {
1560
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/time-series-functions",
1561
+ description: "Gets the lower bound of the timestamp bucket that contains a timestamp.",
1562
+ origin: "vendor-docs",
1563
+ },
1564
+ timestamp_diff: {
1565
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1566
+ description: "Gets the number of unit boundaries between two `TIMESTAMP` values (`end_timestamp` - `start_timestamp`) at a particular time granularity.",
1567
+ origin: "vendor-docs",
1568
+ },
1569
+ timestamp_from_unix_micros: {
1570
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1571
+ description: "Interprets `int64_expression` as the number of microseconds since 1970-01-01 00:00:00 UTC and returns a timestamp.",
1572
+ origin: "vendor-docs",
1573
+ },
1574
+ timestamp_from_unix_millis: {
1575
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1576
+ description: "Interprets `int64_expression` as the number of milliseconds since 1970-01-01 00:00:00 UTC and returns a timestamp.",
1577
+ origin: "vendor-docs",
1578
+ },
1579
+ timestamp_from_unix_seconds: {
1580
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1581
+ description: "Interprets `int64_expression` as the number of seconds since 1970-01-01 00:00:00 UTC and returns a timestamp.",
1582
+ origin: "vendor-docs",
1583
+ },
1584
+ timestamp_micros: {
1585
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1586
+ description: "Interprets `int64_expression` as the number of microseconds since 1970-01-01 00:00:00 UTC and returns a timestamp.",
1587
+ origin: "vendor-docs",
1588
+ },
1589
+ timestamp_millis: {
1590
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1591
+ description: "Interprets `int64_expression` as the number of milliseconds since 1970-01-01 00:00:00 UTC and returns a timestamp.",
1592
+ origin: "vendor-docs",
1593
+ },
1594
+ timestamp_seconds: {
1595
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1596
+ description: "Interprets `int64_expression` as the number of seconds since 1970-01-01 00:00:00 UTC and returns a timestamp.",
1597
+ origin: "vendor-docs",
1598
+ },
1599
+ timestamp_trunc: {
1600
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1601
+ description: "Truncates a `TIMESTAMP` or `DATETIME` value at a particular granularity.",
1602
+ origin: "vendor-docs",
1603
+ },
1604
+ to_base32: {
1605
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1606
+ description: "Converts a sequence of `BYTES` into a base32-encoded `STRING`.",
1607
+ origin: "vendor-docs",
1608
+ },
1609
+ to_base64: {
1610
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1611
+ description: "Converts a sequence of `BYTES` into a base64-encoded `STRING`.",
1612
+ origin: "vendor-docs",
1613
+ },
1614
+ to_code_points: {
1615
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1616
+ description: "Takes a `STRING` or `BYTES` value and returns an array of `INT64` values that represent code points or extended ASCII character values.",
1617
+ origin: "vendor-docs",
1618
+ },
1619
+ to_hex: {
1620
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1621
+ description: "Converts a sequence of `BYTES` into a hexadecimal `STRING`.",
1622
+ origin: "vendor-docs",
1623
+ },
1624
+ to_json_string: {
1625
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#to_json_string",
1626
+ description: "Converts a SQL value to a JSON-formatted `STRING` value.",
1627
+ origin: "vendor-docs",
1628
+ },
1629
+ to_proto: {
1630
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/protocol_buffer_functions",
1631
+ description: "Returns a PROTO value.",
1632
+ origin: "vendor-docs",
1633
+ },
1634
+ translate: {
1635
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1636
+ description: "In `expression`, replaces each character in `source_characters` with the corresponding character in `target_characters`.",
1637
+ origin: "vendor-docs",
1638
+ },
1639
+ trim: {
1640
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1641
+ description: "Takes a `STRING` or `BYTES` value to trim.",
1642
+ origin: "vendor-docs",
1643
+ },
1644
+ trunc: {
1645
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/mathematical_functions#trunc",
1646
+ description: "If only X is present, `TRUNC` rounds X to the nearest integer whose absolute value isn't greater than the absolute value of X.",
1647
+ origin: "vendor-docs",
1648
+ },
1649
+ uint32: {
1650
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#uint32_for_json",
1651
+ description: "Converts a JSON number to a SQL `UINT32` value.",
1652
+ origin: "vendor-docs",
1653
+ },
1654
+ uint32_array: {
1655
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#uint32_array_for_json",
1656
+ description: "Converts a JSON number to a SQL `UINT32_ARRAY` value.",
1657
+ origin: "vendor-docs",
1658
+ },
1659
+ uint64: {
1660
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#uint64_for_json",
1661
+ description: "Converts a JSON number to a SQL `UINT64` value.",
1662
+ origin: "vendor-docs",
1663
+ },
1664
+ uint64_array: {
1665
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/json_functions#uint64_array_for_json",
1666
+ description: "Converts a JSON number to a SQL `UINT64_ARRAY` value.",
1667
+ origin: "vendor-docs",
1668
+ },
1669
+ unicode: {
1670
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1671
+ description: "Returns the Unicode [code point][string-code-point] for the first character in `value`.",
1672
+ origin: "vendor-docs",
1673
+ },
1674
+ unix_date: {
1675
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions",
1676
+ description: "Returns the number of days since `1970-01-01`.",
1677
+ origin: "vendor-docs",
1678
+ },
1679
+ unix_micros: {
1680
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1681
+ description: "Returns the number of microseconds since `1970-01-01 00:00:00 UTC`.",
1682
+ origin: "vendor-docs",
1683
+ },
1684
+ unix_millis: {
1685
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1686
+ description: "Returns the number of milliseconds since `1970-01-01 00:00:00 UTC`.",
1687
+ origin: "vendor-docs",
1688
+ },
1689
+ unix_seconds: {
1690
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/timestamp_functions",
1691
+ description: "Returns the number of seconds since `1970-01-01 00:00:00 UTC`.",
1692
+ origin: "vendor-docs",
1693
+ },
1694
+ upper: {
1695
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions",
1696
+ description: "For `STRING` arguments, returns the original string with all alphabetic characters in uppercase.",
1697
+ origin: "vendor-docs",
1698
+ },
1699
+ zeroifnull: {
1700
+ docUrl: "https://cloud.google.com/bigquery/docs/reference/standard-sql/conditional_expressions#zeroifnull",
1701
+ description: "Returns `0` if the value of `expr` is `NULL`.",
1702
+ origin: "vendor-docs",
1703
+ },
1704
+ };