Skip to content

Commit f367508

Browse files
committed
Fix rebase conflicts
1 parent fc33e0f commit f367508

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/parser.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -4769,15 +4769,15 @@ impl<'a> Parser<'a> {
47694769
let table_name;
47704770
let schema_name;
47714771
if token2 == Token::Period {
4772-
match token1 {
4772+
match token1.token {
47734773
Token::Word(w) => {
47744774
schema_name = w.value;
47754775
}
47764776
_ => {
47774777
return self.expected("Schema name", token1);
47784778
}
47794779
}
4780-
match token3 {
4780+
match token3.token {
47814781
Token::Word(w) => {
47824782
table_name = w.value;
47834783
}
@@ -4790,7 +4790,7 @@ impl<'a> Parser<'a> {
47904790
schema_name: Some(schema_name),
47914791
})
47924792
} else {
4793-
match token1 {
4793+
match token1.token {
47944794
Token::Word(w) => {
47954795
table_name = w.value;
47964796
}

0 commit comments

Comments
 (0)