File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dev/io.openliberty.data.internal_fat_ddlgen/fat/src/test/jakarta/data/ddlgen Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ private static String createUserAndSchema(JdbcDatabaseContainer<?> testContainer
137
137
stmt .executeUpdate ("alter session set \" _ORACLE_SCRIPT\" =true" );
138
138
stmt .executeUpdate ("alter user " + testContainer .getUsername () + " quota unlimited on users" );
139
139
stmt .executeUpdate ("create user " + user + " identified by " + pass );
140
- stmt .executeUpdate ("grant connect, create session to " + user );
140
+ stmt .executeUpdate ("grant connect, create session, create table to " + user );
141
141
stmt .executeUpdate ("grant unlimited tablespace to " + user );
142
142
}
143
143
@@ -152,7 +152,7 @@ private static String createUserAndSchema(JdbcDatabaseContainer<?> testContainer
152
152
" grant all privileges on tables to " + user );
153
153
stmt .executeUpdate ("alter default privileges in schema public " +
154
154
" grant all privileges on tables to " + user );
155
- stmt .executeUpdate ("grant usage on schema " + user + " to " + user );
155
+ stmt .executeUpdate ("grant all on schema " + user + " to " + user );
156
156
}
157
157
break ;
158
158
case SQLServer : // Working - admin and user share dbo schema when none is defined
You can’t perform that action at this time.
0 commit comments