We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92c653a commit 9e85973Copy full SHA for 9e85973
1 file changed
sbin/rt-setup-fulltext-index.in
@@ -360,6 +360,13 @@ elsif ( $DB{'type'} eq 'Oracle' ) {
360
do_print_error( $dbah => 'GRANT EXECUTE ON CTXSYS.CTX_DDL TO '. $DB{'user'} );
361
}
362
363
+ # On Oracle 23c, we need to reconnect to the database so the new CTXAPP role could apply.
364
+ $RT::Handle->Disconnect;
365
+ $RT::Handle->Connect;
366
+ $dbh = $RT::Handle->dbh;
367
+ $dbh->{'RaiseError'} = 1;
368
+ $dbh->{'PrintError'} = 1;
369
+
370
my %PREFERENCES = (
371
datastore => {
372
type => 'DIRECT_DATASTORE',
0 commit comments