Support some of pipe operators (#1759)

This commit is contained in:
Simon Vandel Sillesen 2025-05-02 05:13:47 +02:00 committed by GitHub
parent a5b9821d1d
commit e5d2215267
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 427 additions and 21 deletions

View file

@ -1113,6 +1113,7 @@ fn parse_escaped_quote_identifiers_with_escape() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
}))
);
}
@ -1165,6 +1166,7 @@ fn parse_escaped_quote_identifiers_with_no_escape() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
}))
);
}
@ -1211,6 +1213,7 @@ fn parse_escaped_backticks_with_escape() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
}))
);
}
@ -1261,6 +1264,7 @@ fn parse_escaped_backticks_with_no_escape() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
}))
);
}
@ -1436,6 +1440,7 @@ fn parse_simple_insert() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1484,6 +1489,7 @@ fn parse_ignore_insert() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1532,6 +1538,7 @@ fn parse_priority_insert() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1577,6 +1584,7 @@ fn parse_priority_insert() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1624,6 +1632,7 @@ fn parse_insert_as() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1686,6 +1695,7 @@ fn parse_insert_as() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1735,6 +1745,7 @@ fn parse_replace_insert() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1775,6 +1786,7 @@ fn parse_empty_row_insert() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -1839,6 +1851,7 @@ fn parse_insert_with_on_duplicate_update() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
})),
source
);
@ -2745,6 +2758,7 @@ fn parse_substring_in_select() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
}),
query
);
@ -3051,6 +3065,7 @@ fn parse_hex_string_introducer() {
for_clause: None,
settings: None,
format_clause: None,
pipe_operators: vec![],
}))
)
}