It, basically, means that DB2 knows you have column_x in this index sorted as ASCENDING, so when you ask for max(column_x) it starts at the end of the tree, instead of the beginning of the tree. It can, also, allow you to avoid a sort if you have ORDER BY column_x DESC, if that index is used by the access path.
Dave