Skip to content

Commit

Permalink
Merge pull request #20 from snowflakedb/warniing_message
Browse files Browse the repository at this point in the history
updated documentation, metadata and error messages
  • Loading branch information
sfc-gh-obielov authored Nov 3, 2024
2 parents eef1ea5 + 8b638b1 commit 084986a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ This package includes the Snowflake Connector for QGIS.
The Snowflake Connector for QGIS provides an interface for open-source GIS application QGIS that can connect to Snowflake and perform all standard operations. It provides a connection via [Python connector](https://github.com/snowflakedb/snowflake-connector-python).

## Installation
The plugin is installed using the QGIS plugin manager. You can try latest development versions by downloading and installing the plugin in QGIS from a zip file. These are available [here](https://github.com/snowflakedb/qgis-snowflake-connector/releases), download the zip-file "qgis-snowflake-connector.zip" for the release you want to try.
The plugin can be installed using the QGIS plugin manager.
- Go to `Plugins` > `Manage And Install Plugins` > `Settings`. Check `Show also Experimaental Plugins` checkbox.
- In the same `Plugins` window go to `All` and search for `Snowflake Connector for QGIS` and click `Install Experimental Plugin`.

You can try latest development versions by downloading and installing the plugin in QGIS from a zip file. These are available [here](https://github.com/snowflakedb/qgis-snowflake-connector/releases), download the zip-file "qgis-snowflake-connector.zip" for the release you want to try.

## Getting Started
1. Install the plugin with the QGIS plugin manager.
Expand Down
2 changes: 1 addition & 1 deletion entities/sf_data_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def handleDoubleClick(self) -> bool:
(
"The dataset is too large. Please consider using "
'"Execute SQL" to limit the result set. If you click '
'"Proceed," only a random sample of 1 million rows '
'"Proceed," only a random sample of 50000 rows '
"will be loaded."
),
)
Expand Down
2 changes: 1 addition & 1 deletion metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
name=Snowflake Connector for QGIS
qgisMinimumVersion=3.0
description=This package includes the Snowflake Connector for QGIS.
version=0.7
version=0.8.1
author=Snowflake Inc.
[email protected]

Expand Down
2 changes: 1 addition & 1 deletion ui/sf_data_source_manager_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def on_m_tables_tree_view_double_clicked(self, index: QModelIndex) -> bool:
(
"The dataset is too large. Please consider using "
'"Execute SQL" to limit the result set. If you click '
'"Proceed," only a random sample of 1 million rows '
'"Proceed," only a random sample of 50000 rows '
"will be loaded."
),
)
Expand Down

0 comments on commit 084986a

Please sign in to comment.