Skip to content

Commit

Permalink
fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
molly-firebolt committed Dec 1, 2023
1 parent 51d637c commit 6c76645
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 875 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Your organization comes prepared with one account for your convenience - choose
## Next steps:

- [Manage accounts](managing-accounts.md)
- [Create logins](managing-logins.md) or [set up SSO authentication](sso.md)
- [Create logins](managing-logins.md) or [set up SSO authentication](./sso/sso.md)
- [Add users](managing-users.md) to your account
- [Manage roles](rbac.md)
- Create databases, engines, and load your data. Follow our [getting started tutorial](../getting-started.md) to try this out with sample data.
Expand Down
2 changes: 1 addition & 1 deletion docs/Guides/query-data/using-the-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ where:
| Property | Data type | Description |
| :------------------------------ | :-------- |:---------------------------------------------------------------------------------------------------------------------------------------------------|
| id | TEXT | The service account ID ([created here](../managing-your-organization/service-accounts.md#creating-a-service-account)). |
| secret | TEXT | The service account secret ([generated here](../managing-your-organization/service-accounts.md#generating-a-secret-for-the-service-account-user)). |
| secret | TEXT | The service account secret ([generated here](../managing-your-organization/service-accounts.md#generating-a-secret-for-a-service-account)). |


**Response**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ The general syntax pattern of a Lambda function is shown below. For detailed syn

| Parameter | Description |
| :-------------------------------------------- | :------------- |
| `<LAMBDA_FUNC>` | Any array function that accepts a Lambda expression as an argument. For a list, see [Lambda functions](../../sql-reference/functions-reference/Lambda/index.md).|
| `<LAMBDA_FUNC>` | Any array function that accepts a Lambda expression as an argument. For a list, see [Lambda functions](../../sql_reference/functions-reference/Lambda/index.md).|
| `<arr1_var>[, <arr2_var>][, ...<arrN_var>]` | A list of one or more variables that you specify. The list is specified in the same order and must be the same length as the list of array expressions (`<array1>[, <array2>][, ...<arrayN>]`). At runtime, each variable contains an element of the corresponding array. The specified `<operation>` is performed for each variable.|
| <operation> | The operation that is performed for each element of the array. This is typically a function or Boolean expression. |
| <array1>[, <array2>][, ...<arrayN>] | A comma-separated list of expressions, each of which evaluates to an `ARRAY` data type. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ TYPE = (<type>)

In some applications, such as Hive partitioning, table partitions are stored in S3 folders and files using a folder naming convention that identifies the partition. The `PARTITION` keyword allows you to specify a regular expression, `<regex>`, to extract a portion of the file path and store it in the specified column when Firebolt uses the external table to ingest partitioned data.

Using `PARTITION` in this way is one method of extracting partition data from file paths. Another method is to use the table metadata column, `source_file_name`, during the `INSERT` operation. For more information, see [Example&ndash;extracting partition values using INSERT](../data-management/insert.md#extracting-partition-values-using-insert-into).
Using `PARTITION` in this way is one method of extracting partition data from file paths. Another method is to use the table metadata column, `source_file_name`, during the `INSERT` operation. For more information, see [Example&ndash;extracting partition values using INSERT](../data-management/insert.md#extracting-partition-values-using-insert).

#### Guidelines for creating the regex
{: .no_toc}
Expand Down
2 changes: 1 addition & 1 deletion docs/sql_reference/functions-reference/Lambda/array-sum.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARRAY_SUM([<function>,] <array>)

| Parameter | Description | Supported input types |
| :--------- | :-------------------------------- |
| `<function>` | A Lambda function with an [arithmetic function](../../operators.md#arithmetic) used to modify the array elements. | Any function |
| `<function>` | A Lambda function with an [arithmetic function](../../operators.md#arithmetic-numbers) used to modify the array elements. | Any function |
| `<array>` | The array to be used to calculate the function. | Any array of numeric types |

## Return Type
Expand Down
2 changes: 1 addition & 1 deletion docs/sql_reference/information-schema/network_policies.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FROM
information_schema.network_policies;
```

Read more about network policies [here](../../../Guides/managing-your-organization/network-policies.md).
Read more about network policies [here](../../Guides/managing-your-organization/network-policies.md).

## Columns in information_schema.network_policies

Expand Down
Loading

0 comments on commit 6c76645

Please sign in to comment.