drg-adaptive/db-migrate-aurora

View on GitHub

Showing 6 of 8 total issues

File AuroraDataApiDriver.ts has 468 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import {
  InternalOptions,
  CallbackFunction,
  ColumnSpec,
  ColumnDef,
Severity: Minor
Found in src/AuroraDataApiDriver.ts - About 7 hrs to fix

AuroraDataApiDriver has 28 functions (exceeds 20 allowed). Consider refactoring.
Open

export default class AuroraDataApiDriver extends BaseDriver {
  _escapeDDL: string;
  _escapeString: string;

  constructor(private internals: IInternalOptions, rdsParams: RDSParams) {
Severity: Minor
Found in src/AuroraDataApiDriver.ts - About 3 hrs to fix

Function createColumnConstraint has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

  createColumnConstraint(
    spec: ColumnSpec & IColumnSpec,
    options?: any,
    tableName?: string,
    columnName?: string
Severity: Minor
Found in src/AuroraDataApiDriver.ts - About 3 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function createColumnConstraint has 49 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  createColumnConstraint(
    spec: ColumnSpec & IColumnSpec,
    options?: any,
    tableName?: string,
    columnName?: string
Severity: Minor
Found in src/AuroraDataApiDriver.ts - About 1 hr to fix

Function runSql has 33 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  async runSql(
    sql?: string,
    parameters?: Array<AWS.RDSDataService.SqlParameter>
  ): Bluebird<any> {
    this.internals.mod.log.sql.apply(null, [sql, parameters]);
Severity: Minor
Found in src/AuroraDataApiDriver.ts - About 1 hr to fix

Function addIndex has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

  addIndex(
    tableName: string,
    indexName: string,
    columns: string | Array<string | IColumnSpec>,
    unique?: boolean
Severity: Minor
Found in src/AuroraDataApiDriver.ts - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Severity
Category
Status
Source
Language