Skip to content

Commit

Permalink
Updated conversion config to include feature request, column conversi…
Browse files Browse the repository at this point in the history
…on logic and bug_report. (#255)

Signed-off-by: Varun Mittal <varunmittal91@gmail.com>
  • Loading branch information
varunmittal91 authored Dec 24, 2023
1 parent 2352e85 commit ac60af5
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/add-modify-conversion-logic.md
Original file line number Diff line number Diff line change
@@ -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
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -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(<path_to_converted_data>)
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.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit ac60af5

Please sign in to comment.