-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1543 from loxp/antlr-parser
add ANTLR PostgreSQL DAL parser
- Loading branch information
Showing
25 changed files
with
374 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,6 @@ execute | |
| alterRoleResetConfig | ||
| dropRole | ||
| show | ||
| setParam | ||
| resetParam | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...ardingsphere/core/parsing/antlr/extractor/statement/engine/dal/DALStatementExtractor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...ntlr/extractor/statement/engine/dal/dialect/postgresql/PostgreSQLResetParamExtractor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright 2016-2018 shardingsphere.io. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* </p> | ||
*/ | ||
|
||
package io.shardingsphere.core.parsing.antlr.extractor.statement.engine.dal.dialect.postgresql; | ||
|
||
import io.shardingsphere.core.parsing.antlr.extractor.statement.engine.dal.DALStatementExtractor; | ||
import io.shardingsphere.core.parsing.parser.dialect.postgresql.statement.ResetParamStatement; | ||
import io.shardingsphere.core.parsing.parser.sql.SQLStatement; | ||
|
||
/** | ||
* PostgreSQL reset param statement extractor. | ||
* | ||
* @author loxp | ||
*/ | ||
public class PostgreSQLResetParamExtractor extends DALStatementExtractor { | ||
|
||
@Override | ||
protected SQLStatement createStatement() { | ||
return new ResetParamStatement(); | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
.../antlr/extractor/statement/engine/dal/dialect/postgresql/PostgreSQLSetParamExtractor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright 2016-2018 shardingsphere.io. | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* </p> | ||
*/ | ||
|
||
package io.shardingsphere.core.parsing.antlr.extractor.statement.engine.dal.dialect.postgresql; | ||
|
||
import io.shardingsphere.core.parsing.antlr.extractor.statement.engine.dal.DALStatementExtractor; | ||
import io.shardingsphere.core.parsing.parser.dialect.postgresql.statement.SetParamStatement; | ||
import io.shardingsphere.core.parsing.parser.sql.SQLStatement; | ||
import lombok.NoArgsConstructor; | ||
|
||
/** | ||
* PostgreSQL set param statement extractor. | ||
* | ||
* @author loxp | ||
*/ | ||
@NoArgsConstructor | ||
public class PostgreSQLSetParamExtractor extends DALStatementExtractor { | ||
|
||
@Override | ||
protected SQLStatement createStatement() { | ||
return new SetParamStatement(); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...sing/antlr/extractor/statement/engine/dal/dialect/postgresql/PostgreSQLShowExtractor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...core/src/main/java/io/shardingsphere/core/parsing/antlr/sql/segment/ShowParamSegment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.