Skip to content

Commit

Permalink
Make enum SQLServerSortOrder become public
Browse files Browse the repository at this point in the history
Issue #2404 

Make this enum to be public, so that people can create "SQLServerMetaData" like below:

new SQLServerMetaData("row_id", java.sql.Types.INTEGER, 0, 0, true, false, SQLServerSortOrder.Unspecified, -1)
  • Loading branch information
mpwong852 authored May 7, 2024
1 parent f452337 commit 8b1140f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Specifies the sorting order
*
*/
enum SQLServerSortOrder {
public enum SQLServerSortOrder {
ASCENDING(0),
DESCENDING(1),
UNSPECIFIED(-1);
Expand Down

0 comments on commit 8b1140f

Please sign in to comment.