Set database options (db_opts) for a test database that we created.
(db_url, db_opts, options)
| 280 | |
| 281 | @update_db_opts.for_db("oracle") |
| 282 | def _update_db_opts(db_url, db_opts, options): |
| 283 | """Set database options (db_opts) for a test database that we created.""" |
| 284 | if ( |
| 285 | options.oracledb_thick_mode |
| 286 | and sa_url.make_url(db_url).get_driver_name() == "oracledb" |
| 287 | ): |
| 288 | db_opts["thick_mode"] = True |
nothing calls this directly
no test coverage detected