You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/pgt_statement_splitter/src/lib.rs
+5
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,11 @@ mod tests {
142
142
.expect_statements(vec!["insert into tbl (id) select 1","select 3"]);
143
143
}
144
144
145
+
#[test]
146
+
fnc_style_comments(){
147
+
Tester::from("/* this is a test */\nselect 1").expect_statements(vec!["select 1"]);
148
+
}
149
+
145
150
#[test]
146
151
fnwith_check(){
147
152
Tester::from("create policy employee_insert on journey_execution for insert to authenticated with check ((select private.organisation_id()) = organisation_id);")
0 commit comments