From ac60af5805d3a21896067fcb5be724daa74ceff4 Mon Sep 17 00:00:00 2001 From: Varun Mittal Date: Sun, 24 Dec 2023 18:59:06 -0500 Subject: [PATCH] Updated conversion config to include feature request, column conversion logic and bug_report. (#255) Signed-off-by: Varun Mittal --- .../add-modify-conversion-logic.md | 20 ++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 39 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++ 3 files changed, 79 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/add-modify-conversion-logic.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/add-modify-conversion-logic.md b/.github/ISSUE_TEMPLATE/add-modify-conversion-logic.md new file mode 100644 index 00000000..b8ba6725 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/add-modify-conversion-logic.md @@ -0,0 +1,20 @@ +--- +name: Add/Modify conversion config +about: Community proposal to add / enhance a column conversion config for a provider +title: "[Proposal] Title for proposal" +labels: proposal +assignees: '' + +--- + +### Provider +> Provider type (e.g. AWS, GCP etc.) + +### Column +> Column name + +### A SQL query or example steps to transform + + +### Context / Supporting information +>Description of the conversion logic diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..ccffe3b3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,39 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Load a sample cost dataset as provider +2. Run conversion +3. If runs but produces incorrect result, run sql query on dataset using +``` +import polars as pl + +lf = pl.scan_parquet() +sql_context = SQLFunctions.create_sql_context(lf=lf) +df = sql_context.execute(sql_query, eager=False).collect() +print(df.select(["column1", ...]).limit(10) +``` + +**Expected behavior** +Value format/value type. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Converter version [e.g. 0.7] + - Focus Spec Version [e.g. 1.0] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..bbcbbe7d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here.