-
Notifications
You must be signed in to change notification settings - Fork 0
Fix all failing fixture tests and improve formatting #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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,35 @@ | ||
| use tree_sitter::Parser; | ||
| use tree_sitter_postgres::LANGUAGE; | ||
|
|
||
| fn print_tree(node: tree_sitter::Node, source: &str, indent: usize) { | ||
| let kind = node.kind(); | ||
| let text = &source[node.byte_range()]; | ||
| let short = if text.len() > 80 { &text[..80] } else { text }; | ||
| let short = short.replace('\n', "\\n"); | ||
| let pad = " ".repeat(indent); | ||
| if node.is_named() { | ||
| println!("{pad}{kind}: {short:?}"); | ||
| } else { | ||
| println!("{pad}[{kind}]: {short:?}"); | ||
| } | ||
| let mut cursor = node.walk(); | ||
| for child in node.children(&mut cursor) { | ||
| print_tree(child, source, indent + 1); | ||
| } | ||
| } | ||
|
|
||
| fn main() { | ||
| let path = std::env::args() | ||
| .nth(1) | ||
| .expect("usage: dump_tree <file.sql>"); | ||
| let sql = std::fs::read_to_string(&path).unwrap(); | ||
| let input = if sql.trim().ends_with(';') { | ||
| sql.trim().to_string() | ||
| } else { | ||
| format!("{};", sql.trim()) | ||
| }; | ||
| let mut parser = Parser::new(); | ||
| parser.set_language(&LANGUAGE.into()).unwrap(); | ||
| let tree = parser.parse(&input, None).unwrap(); | ||
| print_tree(tree.root_node(), &input, 0); | ||
| } |
This file contains hidden or 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 @@ | ||
| use libpgfmt::{format, style::Style}; | ||
| fn main() { | ||
| let sql = std::fs::read_to_string(std::env::args().nth(1).unwrap()).unwrap(); | ||
| let style: Style = std::env::args() | ||
| .nth(2) | ||
| .unwrap_or("aweber".to_string()) | ||
| .parse() | ||
| .unwrap(); | ||
| match format(sql.trim(), style) { | ||
| Ok(f) => print!("{f}\n"), | ||
| Err(e) => eprintln!("Error: {e}"), | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistency: "River (default)" should be updated.
Line 101 still labels River as the default style, but the actual
Style::default()now returnsAweber(per changes insrc/style.rs). The table at lines 8-16 correctly marks AWeber as the default.📝 Proposed fix
And add "(default)" to the AWeber heading if you want to highlight it in the examples section as well.
📝 Committable suggestion
🤖 Prompt for AI Agents