Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
e8fa2e1f
Commit
e8fa2e1f
authored
Jul 09, 2010
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DDC-625 - Fix bug in DBAL MySQL Platform detecting foreign keys
parent
b170b3b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
MySqlPlatform.php
lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
+2
-2
No files found.
lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
View file @
e8fa2e1f
...
...
@@ -124,12 +124,12 @@ class MySqlPlatform extends AbstractPlatform
$sql
=
"SELECT DISTINCT k.`CONSTRAINT_NAME`, k.`COLUMN_NAME`, k.`REFERENCED_TABLE_NAME`, "
.
"k.`REFERENCED_COLUMN_NAME` /*!50116 , c.update_rule, c.delete_rule */ "
.
"FROM information_schema.key_column_usage k /*!50116 "
.
"INNER JOIN information_schema.referential_constraints c ON
k.`CONSTRAINT_NAME` = c.constraint_name AND
"
.
"INNER JOIN information_schema.referential_constraints c ON "
.
" c.constraint_name = k.constraint_name AND "
.
" c.table_name = '
$table
' */ WHERE k.table_name = '
$table
'"
;
if
(
!
is_null
(
$database
))
{
$sql
.=
" AND
table_schema = '
$database
'"
;
$sql
.=
" AND
c.table_schema = '
$database
' AND k.constraint_schema = '"
.
$database
.
"
'"
;
}
$sql
.=
" AND `REFERENCED_COLUMN_NAME` is not NULL"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment