Commit 6552b80a authored by Dustin Wheeler's avatar Dustin Wheeler

Columns should be ordered by column_id

parent 098d54cf
...@@ -748,7 +748,7 @@ EOD; ...@@ -748,7 +748,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(
'/', '/',
...@@ -761,7 +761,7 @@ EOD; ...@@ -761,7 +761,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',
...@@ -774,7 +774,7 @@ EOD; ...@@ -774,7 +774,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