All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.spanner.pgadapter.error.SQLState Maven / Gradle / Ivy

Go to download

The PGAdapter server implements the PostgreSQL wire-protocol, but sends all received statements to a Cloud Spanner database instead of a PostgreSQL database. The Cloud Spanner database must have been created to use the PostgreSQL dialect. See https://cloud.google.com/spanner/docs/quickstart-console#postgresql for more information on how to create PostgreSQL dialect databases on Cloud Spanner.

The newest version!
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.cloud.spanner.pgadapter.error;

import java.nio.charset.StandardCharsets;

public enum SQLState {
  Success("00000"),
  Warning("01000"),
  DynamicResultSetReturned("0100C"),
  ImplicitZeroBitPadding("01008"),
  NullValueEliminatedInSetFunction("01003"),
  PrivilegeNotGranted("01007"),
  PrivilegeNotRevoked("01006"),
  StringDataRightTruncationWarning("01004"),
  DeprecatedFeature("01P01"),
  NoData("02000"),
  NoAdditionalDynamicResultSetsReturned("02001"),
  SQLStatementNotYetComplete("03000"),
  ConnectionException("08000"),
  ConnectionDoesNotExist("08003"),
  ConnectionFailure("08006"),
  SQLClientUnableToEstablishSQLConnection("08001"),
  SQLServerRejectedEstablishmentOfSQLConnection("08004"),
  TransactionResultionUnknown("08007"),
  ProtocolViolation("08P01"),
  TriggeredActionException("09000"),
  FeatureNotSupported("0A000"),
  InvalidTransactionInitiation("0B000"),
  LocatorException("0F0000"),
  InvalidLocatorSpecification("0F100"),
  InvalidGrantor("0L000"),
  InvalidGrantOperation("0LP01"),
  InvalidRoleSpecification("0P000"),
  // Skipping Query exceptions for now as we cannot easily identify them here
  OperatorIntervention("57000"),
  QueryCanceled("57014"),
  AdminShutdown("57P01"),
  CrashShutdown("57P02"),
  CannotConnectNow("57P03"),
  IOError("58030"),
  UndefinedFile("58P01"),
  DuplicateFile("58P02"),
  ConfigFileError("F0000"),
  LockFileExists("F0001"),
  PLPGSQLError("P0000"),
  RaiseException("P0001"),
  NoDataFound("P0002"),
  TooManyRows("P0003"),
  InternalError("XX000"),
  DataCorrupted("XX001"),
  IndexCorrupted("XX002"),
  InvalidAuthorizationSpecification("28000"),
  InvalidPassword("28P01"),

  // Class 22
  DataException("22000"),
  ArraySubscriptError("2202E"),
  CharacterNotInRepertoire("22021"),
  DatetimeFieldOverflow("22008"),
  DivisionByZero("22012"),
  ErrorInAssignment("22005"),
  EscapeCharacterConflict("2200B"),
  IndicatorOverflow("22022"),
  IntervalFieldOverflow("22015"),
  InvalidArgumentForLogarithm("2201E"),
  InvalidArgumentForNtileFunction("22014"),
  InvalidArgumentForNthValueFunction("22016"),
  InvalidArgumentForPowerFunction("2201F"),
  InvalidArgumentForWidthBucketFunction("2201G"),
  InvalidCharacterValueForCast("22018"),
  InvalidDatetimeFormat("22007"),
  InvalidEscapeCharacter("22019"),
  InvalidEscapeOctet("2200D"),
  InvalidEscapeSequence("22025"),
  NonstandardUseOfEscapeCharacter("22P06"),
  InvalidIndicatorParameterValue("22010"),
  InvalidParameterValue("22023"),
  InvalidPrecedingOrFollowingSize("22013"),
  InvalidRegularExpression("2201B"),
  InvalidRowCountInLimitClause("2201W"),
  InvalidRowCountInResultOffsetClause("2201X"),
  InvalidTablesampleArgument("2202H"),
  InvalidTablesampleRepeat("2202G"),
  InvalidTimeZoneDisplacementValue("22009"),
  InvalidUseOfEscapeCharacter("2200C"),
  MostSpecificTypeMismatch("2200G"),
  NullValueNotAllowed("22004"),
  NullValueNoIndicatorParameter("22002"),
  NumericValueOutOfRange("22003"),
  SequenceGeneratorLimitExceeded("2200H"),
  StringDataLengthMismatch("22026"),
  StringDataRightTruncation("22001"),
  SubstringError("22011"),
  TrimError("22027"),
  UnterminatedCString("22024"),
  ZeroLengthCharacterString("2200F"),
  FloatingPointException("22P01"),
  InvalidTextRepresentation("22P02"),
  InvalidBinaryRepresentation("22P03"),
  BadCopyFileFormat("22P04"),
  UntranslatableCharacter("22P05"),
  NotAnXmlDocument("2200L"),
  InvalidXmlDocument("2200M"),
  InvalidXmlContent("2200N"),
  InvalidXmlComment("2200S"),
  InvalidXmlProcessingInstruction("2200T"),
  DuplicateJsonObjectKeyValue("22030"),
  InvalidArgumentForSqlJsonDatetimeFunction("22031"),
  InvalidJsonText("22032"),
  InvalidSqlJsonSubscript("22033"),
  MoreThanOneSqlJsonItem("22034"),
  NoSqlJsonItem("22035"),
  NonNumericSqlJsonItem("22036"),
  NonUniqueKeysInAJsonObject("22037"),
  SingletonSqlJsonItemRequired("22038"),
  SqlJsonArrayNotFound("22039"),
  SqlJsonMemberNotFound("2203A"),
  SqlJsonNumberNotFound("2203B"),
  SqlJsonObjectNotFound("2203C"),
  TooManyJsonArrayElements("2203D"),
  TooManyJsonObjectMembers("2203E"),
  SqlJsonScalarRequired("2203F"),
  SqlJsonItemCannotBeCastToTargetType("2203G"),

  // Class 23 - Integrity Constraint Violation
  IntegrityConstraintViolation("23000"),
  RestrictViolation("23001"),
  NotNullViolation("23502"),
  ForeignKeyViolation("23503"),
  UniqueViolation("23505"),
  CheckViolation("23514"),
  ExclusionViolation("23P01"),

  // Class 25 - Invalid Transaction State
  InvalidTransactionState("25000"),
  ActiveSqlTransaction("25001"),
  BranchTransactionAlreadyActive("25002"),
  HeldCursorRequiresSameIsolationLevel("25008"),
  InappropriateAccessModeForBranchTransaction("25003"),
  InappropriateIsolationLevelForBranchTransaction("25004"),
  NoActiveSqlTransactionForBranchTransaction("25005"),
  ReadOnlySqlTransaction("25006"),
  SchemaAndDataStatementMixingNotSupported("25007"),
  NoActiveSqlTransaction("25P01"),
  InFailedSqlTransaction("25P02"),
  IdleInTransactionSessionTimeout("25P03"),

  // Class 26 - Invalid SQL statement name
  InvalidSqlStatementName("26000"),

  // Class 34 - Cursor
  InvalidCursorName("34000"),

  // Class 3B — Savepoint Exception
  SavepointException("3B000"),
  InvalidSavepointSpecification("3B001"),

  // Class 40 — Transaction Rollback
  TransactionRollback("40000"),
  TransactionIntegrityConstraintViolation("40002"),
  SerializationFailure("40001"),
  StatementCompletionUnknown("40003"),
  DeadlockDetected("40P01"),

  // Class 42 — Syntax Error or Access Rule Violation
  SyntaxErrorOrAccessRuleViolation("42000"),
  SyntaxError("42601"),
  InsufficientPrivilege("42501"),
  CannotCoerce("42846"),
  GroupingError("42803"),
  WindowingError("42P20"),
  InvalidRecursion("42P19"),
  InvalidForeignKey("42830"),
  InvalidName("42602"),
  NameTooLong("42622"),
  ReservedName("42939"),
  DatatypeMismatch("42804"),
  IndeterminateDatatype("42P18"),
  CollationMismatch("42P21"),
  IndeterminateCollation("42P22"),
  WrongOjectType("42809"),
  GeneratedAlways("428C9"),
  UndefinedColumn("42703"),
  UndefinedFunction("42883"),
  UndefinedTable("42P01"),
  UndefinedParameter("42P02"),
  UndefinedObject("42704"),
  DuplicateColumn("42701"),
  DuplicateCursor("42P03"),
  DuplicateDatabase("42P04"),
  DuplicateFunction("42723"),
  DuplicatePreparedStatement("42P05"),
  DuplicateSchema("42P06"),
  DuplicateTable("42P07"),
  DuplicateAlias("42712"),
  DuplicateObject("42710"),
  AmbiguousColumn("42702"),
  AmbiguousFunction("42725"),
  AmbiguousParameter("42P08"),
  AmbiguousAlias("42P09"),
  InvalidColumnReference("42P10"),
  InvalidColumnDefinition("42611"),
  InvalidCursorDefinition("42P11"),
  InvalidDatabaseDefinition("42P12"),
  InvalidFunctionDefinition("42P13"),
  InvalidPreparedStatementDefinition("42P14"),
  InvalidSchemaDefinition("42P15"),
  InvalidTableDefinition("42P16"),
  InvalidObjectDefinition("42P17");

  private final String code;

  SQLState(String code) {
    this.code = code;
  }

  public boolean equals(String otherCode) {
    return code.equals(otherCode);
  }

  @Override
  public String toString() {
    return this.code;
  }

  public byte[] getBytes() {
    return this.code.getBytes(StandardCharsets.UTF_8);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy