Skip to content

Commit

Permalink
Adding more recognized Oracle prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Jun 5, 2024
1 parent 23ab73e commit 6b53cc0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions drivers/qtype.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,34 @@ var execMap = map[string]bool{
"UNLISTEN": true, // stop listening for a notification
"UPDATE": true, // update rows of a table
"VACUUM": true, // garbage-collect and optionally analyze a database
// oracle
"ADMINISTER KEY MANAGEMENT": true,
"ALTER ANALYTIC VIEW": true,
"ALTER ATTRIBUTE DIMENSION": true,
"ALTER AUDIT POLICY": true,
"ALTER CLUSTER": true,
"ALTER DATABASE DICTIONARY": true,
"ALTER DATABASE LINK": true,
"ALTER DIMENSION": true,
"ALTER DISKGROUP": true,
"ALTER FLASHBACK ARCHIVE": true,
"ALTER HEIRARCHY": true,
"ALTER INMEMORY JOIN GROUP": true,
"ALTER JAVA": true,
"ALTER LIBRARY": true,
"ALTER LOCKDOWN PROFILE": true,
"ALTER MATERIALIZED VIEW LOG": true,
"ALTER MATERIALIZED ZONEMAP": true,
"ALTER PACKAGE": true,
"ALTER PLUGGABLE DATABASE": true,
"ALTER PROCEDURE": true,
"ALTER PROFILE": true,
"ALTER RESOURCE COST": true,
"ALTER ROLLBACK SEGMENT": true,
"ALTER SESSION": true,
"ALTER SYNONYM": true,
"ALTER TABLESPACE SET": true,
"ASSOCIATE STATISTICS": true,
}

// createIgnore are parts of the query exec type after CREATE to ignore.
Expand Down

0 comments on commit 6b53cc0

Please sign in to comment.