Closed
Description
It would be nice to have such a feature, so the user could simply make a statemement like select * from table1
rather than specifying the order of the columns by hand like select col1, col2 from table1
.
I got a test case, where I check if certain entries have been copied from table1 to table2.
Both tables will certainly get new columns over the time and I woud like to write the test in a way, that I do not have to add the new columns there as well.
Specifying the order manually would not check new columns, unless the test is also updated.