Skip to content

Commit

Permalink
#10: Fixed formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
redcatbear committed Nov 13, 2019
1 parent f8a986b commit 631580d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/main/java/com/exasol/adapter/dialects/SqlDialect.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,14 @@ public interface SqlDialect {
* Dialects that support a single database should not use <code>AUTO_DETECT</code> because this unnecessarily costs
* performance.
*/
public enum StructureElementSupport
{
public enum StructureElementSupport {
NONE, SINGLE, MULTIPLE, AUTO_DETECT
}

/**
* This enumeration specifies different exception handling strategies.
*/
public enum ExceptionHandlingMode
{
public enum ExceptionHandlingMode {
IGNORE_INVALID_VIEWS, NONE
}

Expand Down Expand Up @@ -146,8 +144,7 @@ public enum ExceptionHandlingMode
* when sorted ascending</dd>
* </dl>
*/
public enum NullSorting
{
public enum NullSorting {
NULLS_SORTED_AT_END, NULLS_SORTED_AT_START, NULLS_SORTED_HIGH, NULLS_SORTED_LOW
}

Expand Down

0 comments on commit 631580d

Please sign in to comment.