Skip to content

Commit 212379b

Browse files
ack
1 parent b5ff532 commit 212379b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
source: crates/pgls_treesitter_grammar/tests/grammar_tests.rs
3+
expression: writer
4+
---
5+
update auth.users set users.email = '[email protected]';
6+
-----------------------
7+
program [0..50] 'update auth.users set users.email = 'my@mail.com';'
8+
statement [0..49] 'update auth.users set users.email = 'my@mail.com''
9+
update [0..49] 'update auth.users set users.email = 'my@mail.com''
10+
keyword_update [0..6] 'update'
11+
relation [7..17] 'auth.users'
12+
table_reference [7..17] 'auth.users'
13+
schema_identifier [7..11] 'auth'
14+
. [11..12] '.'
15+
table_identifier [12..17] 'users'
16+
keyword_set [18..21] 'set'
17+
assignment [22..49] 'users.email = 'my@mail.com''
18+
column_reference [22..33] 'users.email'
19+
any_identifier [22..27] 'users'
20+
. [27..28] '.'
21+
any_identifier [28..33] 'email'
22+
= [34..35] '='
23+
literal [36..49] ''my@mail.com''
24+
; [49..50] ';'

0 commit comments

Comments
 (0)