Skip to content

Commit

Permalink
Update version of tree-sitter-sql (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanzaku authored Oct 11, 2023
1 parent 29740bd commit 258fa10
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions crates/uroborosql-fmt/testfiles/dst/select/null_type_cast.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
select /* _SQL_ID_ */
cast(null as text) as "test"
, cast('Y' as text)
3 changes: 3 additions & 0 deletions crates/uroborosql-fmt/testfiles/src/select/null_type_cast.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
select /* _SQL_ID_ */
null::text AS "test"
, 'Y'::text

0 comments on commit 258fa10

Please sign in to comment.