Commit 213fad75 authored by Dustin Wheeler's avatar Dustin Wheeler

OraclePlatform#getListTableColumnsSQL returns columns ordered by position rather than name

parent 6552b80a
......@@ -679,7 +679,7 @@ END;';
) AS comments
FROM $tabColumnsTableName c
WHERE c.table_name = " . $table . " $tabColumnsOwnerCondition
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