Skip to content

Commit dbd5dc7

Browse files
kyleconroyclaude
andcommitted
Add issue template, PR template, and CONTRIBUTING.md
- Issue template requests full SQL query and suggests EXPLAIN AST output - PR template notes that external PRs are not accepted - CONTRIBUTING.md explains that all code is written by Claude Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d3b5c08 commit dbd5dc7

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Parser Bug
3+
about: Report a SQL query that doesn't parse correctly
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
## SQL Query
10+
11+
Please provide the **complete** SQL query that fails to parse:
12+
13+
```sql
14+
-- Paste your SQL query here
15+
```
16+
17+
## Expected Behavior
18+
19+
Describe what you expected to happen.
20+
21+
## Actual Behavior
22+
23+
Describe what actually happened (error message, incorrect AST, etc.).
24+
25+
## EXPLAIN AST Output (Optional but Helpful)
26+
27+
If possible, provide the ClickHouse `EXPLAIN AST` output for comparison:
28+
29+
```
30+
-- Run: clickhouse client --query "EXPLAIN AST <your query>"
31+
-- Paste the output here
32+
```
33+
34+
## Additional Context
35+
36+
- ClickHouse version (if relevant):
37+
- Any other context about the problem:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## Important
2+
3+
This repository does not accept pull requests. All code is written by Claude (AI).
4+
5+
If you've found a bug or want to request a feature, please [open an issue](https://github.com/sqlc-dev/doubleclick/issues/new) instead.
6+
7+
---
8+
9+
If you're a maintainer, please provide:
10+
11+
## Summary
12+
13+
## Test Plan

CONTRIBUTING.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Contributing
2+
3+
Thank you for your interest in doubleclick!
4+
5+
## Pull Requests
6+
7+
**This repository does not accept pull requests.** All code is written by [Claude](https://claude.ai), an AI assistant by Anthropic.
8+
9+
## Reporting Bugs
10+
11+
If you've found a bug, please [open an issue](https://github.com/sqlc-dev/doubleclick/issues/new?template=parser_bug.md) with:
12+
13+
1. The **complete SQL query** that fails to parse
14+
2. The expected behavior
15+
3. The actual behavior (error message or incorrect output)
16+
4. Optionally, the ClickHouse `EXPLAIN AST` output for comparison
17+
18+
## Feature Requests
19+
20+
For feature requests, please [open an issue](https://github.com/sqlc-dev/doubleclick/issues/new) describing the functionality you'd like to see.

0 commit comments

Comments
 (0)