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;
) AS comments
FROM user_tab_columns c
WHERE c.table_name = 'test'
ORDER BY c.column_name"
ORDER BY c.column_id"
),
array(
'/',
......@@ -763,7 +763,7 @@ EOD;
) AS comments
FROM user_tab_columns c
WHERE c.table_name = 'test'
ORDER BY c.column_name"
ORDER BY c.column_id"
),
array(
'scott',
......@@ -776,7 +776,7 @@ EOD;
) AS comments
FROM all_tab_columns c
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