Skip to content

Commit

Permalink
Make enum SQLServerSortOrder become public (#2405)
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 committed May 10, 2024
1 parent 357a0b5 commit 561bb4f
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 561bb4f

Please sign in to comment.