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
fadc21b3
Commit
fadc21b3
authored
Mar 10, 2017
by
Dustin Wheeler
Committed by
Steve Müller
Mar 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Columns should be ordered by column_id
parent
31db2263
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
OraclePlatformTest.php
tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php
+3
-3
No files found.
tests/Doctrine/Tests/DBAL/Platforms/OraclePlatformTest.php
View file @
fadc21b3
...
@@ -750,7 +750,7 @@ EOD;
...
@@ -750,7 +750,7 @@ EOD;
) AS comments
) AS comments
FROM user_tab_columns c
FROM user_tab_columns c
WHERE c.table_name = 'test'
WHERE c.table_name = 'test'
ORDER BY c.column_
name
"
ORDER BY c.column_
id
"
),
),
array
(
array
(
'/'
,
'/'
,
...
@@ -763,7 +763,7 @@ EOD;
...
@@ -763,7 +763,7 @@ EOD;
) AS comments
) AS comments
FROM user_tab_columns c
FROM user_tab_columns c
WHERE c.table_name = 'test'
WHERE c.table_name = 'test'
ORDER BY c.column_
name
"
ORDER BY c.column_
id
"
),
),
array
(
array
(
'scott'
,
'scott'
,
...
@@ -776,7 +776,7 @@ EOD;
...
@@ -776,7 +776,7 @@ EOD;
) AS comments
) AS comments
FROM all_tab_columns c
FROM all_tab_columns c
WHERE c.table_name = 'test' AND c.owner = 'SCOTT'
WHERE c.table_name = 'test' AND c.owner = 'SCOTT'
ORDER BY c.column_
name
"
ORDER BY c.column_
id
"
),
),
);
);
}
}
...
...
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