Class ServerSettings

java.lang.Object
com.clickhouse.client.api.internal.ServerSettings

public final class ServerSettings extends Object
Incomplete list of server side settings. This class is not intended to list all possible settings, but only those that are commonly used.
  • Field Details

    • WAIT_END_OF_QUERY

      public static final String WAIT_END_OF_QUERY
      See Also:
    • INPUT_FORMAT_BINARY_READ_JSON_AS_STRING

      public static final String INPUT_FORMAT_BINARY_READ_JSON_AS_STRING
      Server will expect a string in JSON format and parse it into a JSON object.
      See Also:
    • OUTPUT_FORMAT_BINARY_WRITE_JSON_AS_STRING

      public static final String OUTPUT_FORMAT_BINARY_WRITE_JSON_AS_STRING
      Server will return a JSON object as a string.
      See Also:
    • MAX_RESULT_ROWS

      public static final String MAX_RESULT_ROWS
      Limit number of rows in a result set
      See Also:
    • RESULT_OVERFLOW_MODE

      public static final String RESULT_OVERFLOW_MODE
      Defines server response if result set exceeded a limit set by max_result_rows. Possible values are 'throw' or 'break'. Default is 'throw'
      See Also:
    • ASYNC_INSERT

      public static final String ASYNC_INSERT
      See Also:
    • WAIT_ASYNC_INSERT

      public static final String WAIT_ASYNC_INSERT
      See Also:
  • Constructor Details

    • ServerSettings

      public ServerSettings()