Skip to content

Commit

Permalink
fix: point old documentation to correct URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
gm42 committed Sep 11, 2024
1 parent 35cdea3 commit 8072fd1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/developing-with-firebolt/connecting-with-jdbc.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This documentation is related to an older version of Firebolt. For the most curr
# Using the JDBC driver
{:.no_toc}

Firebolt provides a [type 4](https://en.wikipedia.org/wiki/JDBC_driver#Type_4_driver_%E2%80%93_Database-Protocol_driver/Thin_Driver(Pure_Java_driver)){:target="_blank"} JDBC driver to connect to Firebolt from Java applications such as [Tableau](https://docs.firebolt.io/integrations/business-intelligence/setting-up-tableau-desktop-jdbc-to-firebolt.html){:target="_blank"}, [DBeaver](https://docs.firebolt.io/integrations/setting-up-dbeaver-jdbc-connection-to-firebolt.html){:target="_blank"}, and others. The driver is released as open source software using a permissive Apache 2 license and can be browsed, forked, downloaded, and contributed to through its [GitHub repository](https://github.com/firebolt-db/jdbc){:target="_blank"}.
Firebolt provides a [type 4](https://en.wikipedia.org/wiki/JDBC_driver#Type_4_driver_%E2%80%93_Database-Protocol_driver/Thin_Driver(Pure_Java_driver)){:target="_blank"} JDBC driver to connect to Firebolt from Java applications such as [Tableau](https://old.docs.firebolt.io/integrations/business-intelligence/setting-up-tableau-desktop-jdbc-to-firebolt.html){:target="_blank"}, [DBeaver](https://old.docs.firebolt.io/integrations/setting-up-dbeaver-jdbc-connection-to-firebolt.html){:target="_blank"}, and others. The driver is released as open source software using a permissive Apache 2 license and can be browsed, forked, downloaded, and contributed to through its [GitHub repository](https://github.com/firebolt-db/jdbc){:target="_blank"}.

* Topic toC
{:toc}
Expand Down Expand Up @@ -110,4 +110,4 @@ In addition to passing system settings as connection string parameters, any [sys

## Full reference documentation

Complete reference documentation for the classes and methods implemented in the Firebolt JDBC driver can be found [here](https://docs.firebolt.io/jdbc/javadoc/).
Complete reference documentation for the classes and methods implemented in the Firebolt JDBC driver can be found [here](https://old.docs.firebolt.io/jdbc/javadoc/).
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ You are now ready to run Metabase with your Firebolt databases.
| **Password** | The password associated with the username above. |
| **Account name** | The Firebolt account to log in to. |
| **Engine name** | The Firebolt engine to run queries with. |
| **Additional JDBC options** | Any additional JDBC parameters to pass along with the connection, such as `connection_timeout_millis=10000`. See [here](https://docs.firebolt.io/developing-with-firebolt/connecting-with-jdbc.html#available-connection-parameters) for a list of all available JDBC connection parameters. |
| **Additional JDBC options** | Any additional JDBC parameters to pass along with the connection, such as `connection_timeout_millis=10000`. See [here](https://old.docs.firebolt.io/developing-with-firebolt/connecting-with-jdbc.html#available-connection-parameters) for a list of all available JDBC connection parameters. |

Be sure to select **Save** after entering all your information. After saving, you should get a message saying your Firebolt database was successfully added.
2 changes: 1 addition & 1 deletion docs/sql-reference/commands/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ SELECT [ ALL | DISTINCT ] {<select_expr> [, ...]}
The SELECT list defines the columns that it returns. Each `<select_expr>` in the SELECT list can be either expression, or wildcards.

{: .note}
>Selecting **only** [partitioned](https://docs.firebolt.io/working-with-partitions.html) or [virtual columns](https://docs.firebolt.io/loading-data/working-with-external-tables.html#using-metadata-virtual-columns) is currently not supported in Firebolt. Selecting a combination of partitioned/virtual columns and regular columns is supported.
>Selecting **only** [partitioned](https://old.docs.firebolt.io/working-with-partitions.html) or [virtual columns](https://old.docs.firebolt.io/loading-data/working-with-external-tables.html#using-metadata-virtual-columns) is currently not supported in Firebolt. Selecting a combination of partitioned/virtual columns and regular columns is supported.
### SELECT expression

Expand Down

0 comments on commit 8072fd1

Please sign in to comment.