forked from snowflakedb/snowflake-connector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into preset/v1.9.0
- Loading branch information
Showing
467 changed files
with
57,550 additions
and
26,960 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Since version 2.23 (released in August 2019), git-blame has a feature | ||
# to ignore or bypass certain commits. | ||
# | ||
# This file contains a list of commits that are not likely what you | ||
# are looking for in a blame, such as mass reformatting or renaming. | ||
# You can set this file as a default ignore file for blame by running | ||
# the following command. | ||
# | ||
# $ git config blame.ignoreRevsFile .git-blame-ignore-revs | ||
|
||
# Format of files with psf/black | ||
998940692da07a0c2984f1963ace71731dcc11bc | ||
|
||
# License header update(s) | ||
d695d7d159ea94d6211199b7ff40cbc66f5a1dde |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @sfc-gh-mkeller @sfc-gh-kwagner |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
name: Bug Report 🐞 | ||
about: Something isn't working as expected? Here is the right place to report. | ||
labels: bug, needs triage | ||
--- | ||
|
||
Please answer these questions before submitting your issue. Thanks! | ||
|
||
1. What version of Python are you using? | ||
|
||
Replace with the output of `python --version --version` | ||
|
||
2. What operating system and processor architecture are you using? | ||
|
||
Replace with the output of `python -c 'import platform; print(platform.platform())'` | ||
|
||
3. What are the component versions in the environment (`pip freeze`)? | ||
|
||
Replace with the output of `python -m pip freeze` | ||
|
||
4. What did you do? | ||
|
||
If possible, provide a recipe for reproducing the error. | ||
A complete runnable program is good. | ||
|
||
5. What did you expect to see? | ||
|
||
What should have happened and what happened instead? | ||
|
||
6. Can you set logging to DEBUG and collect the logs? | ||
|
||
``` | ||
import logging | ||
import os | ||
for logger_name in ('snowflake.connector',): | ||
logger = logging.getLogger(logger_name) | ||
logger.setLevel(logging.DEBUG) | ||
ch = logging.StreamHandler() | ||
ch.setLevel(logging.DEBUG) | ||
ch.setFormatter(logging.Formatter('%(asctime)s - %(threadName)s %(filename)s:%(lineno)d - %(funcName)s() - %(levelname)s - %(message)s')) | ||
logger.addHandler(ch) | ||
``` | ||
|
||
<!-- | ||
If you need urgent assistance reach out to support for escalated issue processing https://community.snowflake.com/s/article/How-To-Submit-a-Support-Case-in-Snowflake-Lodge | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: Feature Request 💡 | ||
about: Suggest a new idea for the project. | ||
labels: feature | ||
--- | ||
|
||
## What is the current behavior? | ||
|
||
## What is the desired behavior? | ||
|
||
## How would this improve `snowflake-connector-python`? | ||
|
||
## References, Other Background |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
assignees: | ||
- "sfc-gh-mkeller" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Please answer these questions before submitting your pull requests. Thanks! | ||
|
||
1. What GitHub issue is this PR addressing? Make sure that there is an accompanying issue to your PR. | ||
|
||
Fixes #NNNN | ||
|
||
2. Fill out the following pre-review checklist: | ||
|
||
- [ ] I am adding a new automated test(s) to verify correctness of my new code | ||
- [ ] I am adding new logging messages | ||
- [ ] I am modifying authorization mechanisms | ||
- [ ] I am adding new credentials | ||
- [ ] I am modifying OCSP code | ||
- [ ] I am adding a new dependency | ||
|
||
3. Please describe how your code solves the related issue. | ||
|
||
Please write a short description of how your code change solves the related issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
point_of_contact: @snowflakedb/client | ||
production: true | ||
code_owners_file_present: true | ||
jira_area: Snowpark: Application Development Ecosystem |
Oops, something went wrong.