Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/parser_bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Parser Bug
about: Report a SQL query that doesn't parse correctly
title: ''
labels: bug
assignees: ''
---

## SQL Query

Please provide the **complete** SQL query that fails to parse:

```sql
-- Paste your SQL query here
```

## Expected Behavior

Describe what you expected to happen.

## Actual Behavior

Describe what actually happened (error message, incorrect AST, etc.).

## EXPLAIN AST Output (Optional but Helpful)

If possible, provide the ClickHouse `EXPLAIN AST` output for comparison:

```
-- Run: clickhouse client --query "EXPLAIN AST <your query>"
-- Paste the output here
```

## Additional Context

- ClickHouse version (if relevant):
- Any other context about the problem:
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Important

This repository does not accept pull requests. All code is written by Claude (AI).

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.

---

If you're a maintainer, please provide:

## Summary

## Test Plan
20 changes: 20 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Contributing

Thank you for your interest in doubleclick!

## Pull Requests

**This repository does not accept pull requests.** All code is written by [Claude](https://claude.ai), an AI assistant by Anthropic.

## Reporting Bugs

If you've found a bug, please [open an issue](https://github.com/sqlc-dev/doubleclick/issues/new?template=parser_bug.md) with:

1. The **complete SQL query** that fails to parse
2. The expected behavior
3. The actual behavior (error message or incorrect output)
4. Optionally, the ClickHouse `EXPLAIN AST` output for comparison

## Feature Requests

For feature requests, please [open an issue](https://github.com/sqlc-dev/doubleclick/issues/new) describing the functionality you'd like to see.