Commit fadc21b3 authored by Dustin Wheeler's avatar Dustin Wheeler Committed by Steve Müller

Columns should be ordered by column_id

parent 31db2263
...@@ -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"
), ),
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment