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

OraclePlatform#getListTableColumnsSQL returns columns ordered by position rather than name

parent fadc21b3
......@@ -676,7 +676,7 @@ LEFT JOIN user_cons_columns r_cols
) 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