Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
eeac11a6
Unverified
Commit
eeac11a6
authored
4 years ago
by
Vincent Petry
Browse files
Options
Downloads
Patches
Plain Diff
Fix casing of MySQLPlatform class name
Signed-off-by:
Vincent Petry
<
vincent@nextcloud.com
>
parent
5a8f15e1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/settings/lib/SetupChecks/SupportedDatabase.php
+2
-2
2 additions, 2 deletions
apps/settings/lib/SetupChecks/SupportedDatabase.php
with
2 additions
and
2 deletions
apps/settings/lib/SetupChecks/SupportedDatabase.php
+
2
−
2
View file @
eeac11a6
...
...
@@ -29,7 +29,7 @@ namespace OCA\Settings\SetupChecks;
use
Doctrine\DBAL\Platforms\MariaDb1027Platform
;
use
Doctrine\DBAL\Platforms\MySQL57Platform
;
use
Doctrine\DBAL\Platforms\MySQL80Platform
;
use
Doctrine\DBAL\Platforms\MyS
ql
Platform
;
use
Doctrine\DBAL\Platforms\MyS
QL
Platform
;
use
Doctrine\DBAL\Platforms\OraclePlatform
;
use
Doctrine\DBAL\Platforms\PostgreSQL100Platform
;
use
Doctrine\DBAL\Platforms\PostgreSQL94Platform
;
...
...
@@ -61,7 +61,7 @@ class SupportedDatabase {
case
MySQL80Platform
::
class
:
# extends MySQL57Platform
case
MySQL57Platform
::
class
:
# extends MySQLPlatform
case
MariaDb1027Platform
::
class
:
# extends MySQLPlatform
case
MyS
ql
Platform
::
class
:
case
MyS
QL
Platform
::
class
:
$result
=
$this
->
connection
->
prepare
(
'SHOW VARIABLES LIKE "version";'
);
$result
->
execute
();
$row
=
$result
->
fetch
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment