Skip to content

Commit

Permalink
chore(query): SHOW/DESC is not DDL (#16583)
Browse files Browse the repository at this point in the history
SHOW/DESC is not DDL

Data definition language is a syntax for creating and modifying database objects such as tables, indices, and users.

SHOW / DESC is not ddl.
  • Loading branch information
TCeason authored Oct 10, 2024
1 parent b7acf5c commit 21e9b98
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl Interpreter for ShowConnectionsInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[fastrace::trace]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl Interpreter for DescDataMaskInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl Interpreter for ShowCreateDatabaseInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ impl Interpreter for ShowFileFormatsInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[fastrace::trace]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl Interpreter for ShowNetworkPoliciesInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl Interpreter for DescNetworkPolicyInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl Interpreter for DescNotificationInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[fastrace::trace]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl Interpreter for DescPasswordPolicyInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ impl Interpreter for ShowRolesInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[fastrace::trace]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl Interpreter for DescribeTableInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl Interpreter for ShowCreateTableInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl Interpreter for DescribeTaskInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[fastrace::trace]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl Interpreter for ShowTasksInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[fastrace::trace]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl Interpreter for DescribeViewInterpreter {
}

fn is_ddl(&self) -> bool {
true
false
}

#[async_backtrace::framed]
Expand Down

0 comments on commit 21e9b98

Please sign in to comment.