Skip to content

Commit

Permalink
allow materialized views to be created in Oracle testing
Browse files Browse the repository at this point in the history
  • Loading branch information
S11001001 committed Jun 16, 2021
1 parent 42d9553 commit 05be01f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ trait OracleAround {
stmt.execute(s"""create user $name identified by $pwd""")
stmt.execute(s"""grant connect, resource to $name""")
stmt.execute(
s"""grant create table, create view, create procedure, create sequence, create type to $name"""
s"""grant create table, create materialized view, create view, create procedure, create sequence, create type to $name"""
)
stmt.execute(s"""alter user $name quota unlimited on users""")
}.get
Expand Down

0 comments on commit 05be01f

Please sign in to comment.