-
Bug
-
Resolution: Fixed
-
Minor
-
2.3
-
MOODLE_23_STABLE
-
MOODLE_23_STABLE
-
w16_
MDL-32392_m23_minversion -
While working on MDL-32368 for postgres, it was detected that some drivers have the is_min_version() method, defined as protected, and never used at all along codebase.
grep -r is_min_version *
|
|
lib/dml/mssql_native_moodle_database.php: protected function is_min_version($version) {
|
lib/dml/oci_native_moodle_database.php: protected function is_min_version($version) {
|
lib/dml/pgsql_native_moodle_database.php: protected function is_min_version($version) {
|
lib/dml/sqlsrv_native_moodle_database.php: protected function is_min_version($version) {
|
So this is about to:
1) delete the method from all drivers.
2) change it to private in the pgsql one, as far as MDL-32368 is using it.
Ciao
- Testing discovered
-
MDL-32368 force pg to always use old bytea encoding
-
- Closed
-