Skip to content

Commit

Permalink
refactor: rename role.rs to alter.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
r4ntix committed Aug 9, 2023
1 parent 78fd8c7 commit fe66a98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/parser/role.rs → src/parser/alter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//! SQL Parser for role
//! SQL Parser for ALTER

use super::{Parser, ParserError};
use crate::{
Expand Down
2 changes: 1 addition & 1 deletion src/parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use crate::dialect::*;
use crate::keywords::{self, Keyword};
use crate::tokenizer::*;

mod role;
mod alter;

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ParserError {
Expand Down

0 comments on commit fe66a98

Please sign in to comment.