Package

roc.postgresql

server

Permalink

package server

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. server
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. final case class ErrorMessage extends PostgresqlMessage with Product with Serializable

    Permalink

    Represents a set of Error Messages

  2. type Field = (Char, String)

    Permalink
  3. type Fields = List[Field]

    Permalink
  4. sealed abstract class PostgresqlMessage extends AnyRef

    Permalink

    Represents an error that occured on the Postgresql Server.

    Represents an error that occured on the Postgresql Server.

    The value members here are possible fields that can be appear in an ErrorResponse or NoticeResponse. severity, code, detail are always present.

    See also

    http://www.postgresql.org/docs/current/static/errcodes-appendix.html

    http://www.postgresql.org/docs/current/static/protocol-error-fields.html

  5. final case class SuccessMessage extends PostgresqlMessage with Product with Serializable

    Permalink

    Represents a set of Successful Message

    Represents a set of Successful Message

    See also

    http://www.postgresql.org/docs/current/static/errcodes-appendix.html

  6. final case class UnknownMessage extends PostgresqlMessage with Product with Serializable

    Permalink

    Represents an unknown or undefined message.

    Represents an unknown or undefined message.

    From Postgresql Documentation: "Since more field types might be added in future, frontends should silently ignore fields of unrecognized type." Therefore, if we decode an Error we do not recognize, we do not create a Failed Decoding Result.

  7. final case class WarningMessage extends PostgresqlMessage with Product with Serializable

    Permalink

    Represents a set of Warning Messages

    Represents a set of Warning Messages

    Warning Messages

    1. warning
    2. dynamic_result_sets_returned
    3. implicit_zero_bit_padding
    4. null_value_eliminated_in_set_function
    5. privilege_not_granted
    6. privilege_not_revoked
    7. string_data_right_truncation
    8. deprecated_feature
    9. no_data
    10. no_additional_dynamic_result_sets_returned
    See also

    https://github.com/postgres/postgres/blob/master/src/backend/utils/errcodes.txt

    http://www.postgresql.org/docs/current/static/errcodes-appendix.html

Inherited from AnyRef

Inherited from Any

Ungrouped