We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc33e0f commit f367508Copy full SHA for f367508
src/parser.rs
@@ -4769,15 +4769,15 @@ impl<'a> Parser<'a> {
4769
let table_name;
4770
let schema_name;
4771
if token2 == Token::Period {
4772
- match token1 {
+ match token1.token {
4773
Token::Word(w) => {
4774
schema_name = w.value;
4775
}
4776
_ => {
4777
return self.expected("Schema name", token1);
4778
4779
4780
- match token3 {
+ match token3.token {
4781
4782
table_name = w.value;
4783
@@ -4790,7 +4790,7 @@ impl<'a> Parser<'a> {
4790
schema_name: Some(schema_name),
4791
})
4792
} else {
4793
4794
4795
4796
0 commit comments