gitextract_ga4y4khc/ ├── .claude/ │ └── skills/ │ └── fix-bug/ │ └── SKILL.md ├── .devcontainer/ │ └── devcontainer.json ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── close-wait-for-reply-issues.yml │ ├── commit-message-validation.yml │ ├── detekt.yml │ ├── gradle-validation.yml │ ├── junie.yml │ └── pull-request-title-validation.yml ├── .gitignore ├── .idea/ │ ├── detekt.xml │ ├── externalDependencies.xml │ └── vcs.xml ├── .junie/ │ └── guidelines.md ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE.txt ├── README.md ├── api/ │ └── exposed.api ├── build.gradle.kts ├── buildScripts/ │ └── docker/ │ ├── docker-compose-mariadb.yml │ ├── docker-compose-mysql5.yml │ ├── docker-compose-mysql8.yml │ ├── docker-compose-oracle.yml │ ├── docker-compose-postgres.yml │ └── docker-compose-sqlserver.yml ├── buildSrc/ │ ├── build.gradle.kts │ ├── gradle.properties │ ├── settings.gradle.kts │ └── src/ │ └── main/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── gradle/ │ ├── Detekt.kt │ ├── Publishing.kt │ └── TestDbDsl.kt ├── detekt/ │ ├── detekt-config.yml │ └── detekt-formatting-1.23.8.jar ├── docs/ │ ├── about.html │ ├── api/ │ │ ├── exposed-core/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── org.jetbrains.exposed.v1.core/ │ │ │ │ ├── -abstract-query/ │ │ │ │ │ ├── -abstract-query.html │ │ │ │ │ ├── -comment-position/ │ │ │ │ │ │ ├── -a-f-t-e-r_-s-e-l-e-c-t/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -b-a-c-k/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -f-r-o-n-t/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ └── values.html │ │ │ │ │ ├── adjust-comments.html │ │ │ │ │ ├── adjust-having.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── comment.html │ │ │ │ │ ├── comments.html │ │ │ │ │ ├── copy-to.html │ │ │ │ │ ├── distinct-on.html │ │ │ │ │ ├── distinct.html │ │ │ │ │ ├── fetch-size.html │ │ │ │ │ ├── group-by.html │ │ │ │ │ ├── grouped-by-columns.html │ │ │ │ │ ├── has-custom-for-update-state.html │ │ │ │ │ ├── having.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-for-update.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── order-by-expressions.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── set.html │ │ │ │ │ ├── where.html │ │ │ │ │ ├── with-distinct-on.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── -alias/ │ │ │ │ │ ├── -alias.html │ │ │ │ │ ├── alias.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── fields.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modify-statement.html │ │ │ │ │ ├── original-column.html │ │ │ │ │ ├── primary-key.html │ │ │ │ │ ├── table-name-with-alias.html │ │ │ │ │ └── table-name.html │ │ │ │ ├── -and-bit-op/ │ │ │ │ │ ├── -and-bit-op.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── expr1.html │ │ │ │ │ ├── expr2.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -and-op/ │ │ │ │ │ ├── -and-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -array-column-type/ │ │ │ │ │ ├── -array-column-type.html │ │ │ │ │ ├── delegate-type.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── dimensions.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── maximum-cardinality.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── parameter-marker.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── set-parameter.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -auto-inc-column-type/ │ │ │ │ │ ├── -auto-inc-column-type.html │ │ │ │ │ ├── autoinc-seq.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── next-val-expression.html │ │ │ │ │ ├── sequence.html │ │ │ │ │ └── sql-type.html │ │ │ │ ├── -avg/ │ │ │ │ │ ├── -avg.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -base-case-when/ │ │ │ │ │ ├── -base-case-when.html │ │ │ │ │ ├── cases.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── else-result.html │ │ │ │ │ ├── expressions.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── to-query-builder.html │ │ │ │ │ └── value.html │ │ │ │ ├── -basic-binary-column-type/ │ │ │ │ │ ├── -basic-binary-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -basic-uuid-column-type/ │ │ │ │ │ ├── -basic-uuid-column-type.html │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ └── sql-type.html │ │ │ │ ├── -between/ │ │ │ │ │ ├── -between.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── from.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── to-query-builder.html │ │ │ │ │ └── to.html │ │ │ │ ├── -bi-composite-column/ │ │ │ │ │ ├── -bi-composite-column.html │ │ │ │ │ ├── get-real-columns-with-values.html │ │ │ │ │ ├── get-real-columns.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── restore-value-from-parts.html │ │ │ │ │ ├── transform-from-value.html │ │ │ │ │ └── transform-to-value.html │ │ │ │ ├── -binary-column-type/ │ │ │ │ │ ├── -binary-column-type.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── length.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── validate-value-before-update.html │ │ │ │ ├── -blob-column-type/ │ │ │ │ │ ├── -blob-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── set-parameter.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── use-object-identifier.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -boolean-column-type/ │ │ │ │ │ ├── -boolean-column-type.html │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -byte-column-type/ │ │ │ │ │ ├── -byte-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── value-from-d-b.html │ │ │ │ │ └── value-to-d-b.html │ │ │ │ ├── -case/ │ │ │ │ │ ├── -case.html │ │ │ │ │ ├── -when.html │ │ │ │ │ └── index.html │ │ │ │ ├── -case-when/ │ │ │ │ │ ├── -case-when.html │ │ │ │ │ ├── -else.html │ │ │ │ │ ├── -when.html │ │ │ │ │ ├── cases.html │ │ │ │ │ ├── expressions.html │ │ │ │ │ └── index.html │ │ │ │ ├── -case-when-else/ │ │ │ │ │ ├── -case-when-else.html │ │ │ │ │ ├── cases.html │ │ │ │ │ ├── else-result.html │ │ │ │ │ ├── expressions.html │ │ │ │ │ └── index.html │ │ │ │ ├── -cast/ │ │ │ │ │ ├── -cast.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -cast-to-json/ │ │ │ │ │ ├── -cast-to-json.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -char-column-type/ │ │ │ │ │ ├── -char-column-type.html │ │ │ │ │ ├── col-length.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── validate-value-before-update.html │ │ │ │ ├── -char-length/ │ │ │ │ │ ├── -char-length.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -character-column-type/ │ │ │ │ │ ├── -character-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -check-constraint/ │ │ │ │ │ ├── -check-constraint.html │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── from.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── check-name.html │ │ │ │ │ ├── check-op.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modify-statement.html │ │ │ │ │ └── table-name.html │ │ │ │ ├── -coalesce/ │ │ │ │ │ ├── -coalesce.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -column/ │ │ │ │ │ ├── -column.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── compare-to.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── default-value-fun.html │ │ │ │ │ ├── default-value-in-db.html │ │ │ │ │ ├── description-ddl.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── foreign-key.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-database-generated.html │ │ │ │ │ ├── modify-statement.html │ │ │ │ │ ├── modify-statements.html │ │ │ │ │ ├── name-in-database-case.html │ │ │ │ │ ├── name-unquoted.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── referee.html │ │ │ │ │ ├── table.html │ │ │ │ │ ├── to-query-builder.html │ │ │ │ │ ├── to-string.html │ │ │ │ │ └── with-column-type.html │ │ │ │ ├── -column-diff/ │ │ │ │ │ ├── -column-diff.html │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── -all-changed.html │ │ │ │ │ │ ├── -none-changed.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── auto-inc.html │ │ │ │ │ ├── case-sensitive-name.html │ │ │ │ │ ├── defaults.html │ │ │ │ │ ├── has-differences.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nullability.html │ │ │ │ │ ├── size-and-scale.html │ │ │ │ │ └── type.html │ │ │ │ ├── -column-set/ │ │ │ │ │ ├── -column-set.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── cross-join.html │ │ │ │ │ ├── describe.html │ │ │ │ │ ├── fields.html │ │ │ │ │ ├── full-join.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inner-join.html │ │ │ │ │ ├── join.html │ │ │ │ │ ├── left-join.html │ │ │ │ │ ├── right-join.html │ │ │ │ │ └── source.html │ │ │ │ ├── -column-transformer/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── unwrap.html │ │ │ │ │ └── wrap.html │ │ │ │ ├── -column-type/ │ │ │ │ │ ├── -column-type.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── nullable.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -column-with-transform/ │ │ │ │ │ ├── -column-with-transform.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── nullable.html │ │ │ │ │ ├── original-column-type.html │ │ │ │ │ ├── parameter-marker.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── set-parameter.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── transformer.html │ │ │ │ │ ├── unwrap-recursive.html │ │ │ │ │ ├── value-from-d-b.html │ │ │ │ │ └── value-to-d-b.html │ │ │ │ ├── -comparison-op/ │ │ │ │ │ ├── -comparison-op.html │ │ │ │ │ ├── expr1.html │ │ │ │ │ ├── expr2.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── op-sign.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -complex-expression/ │ │ │ │ │ └── index.html │ │ │ │ ├── -composite-column/ │ │ │ │ │ ├── -composite-column.html │ │ │ │ │ ├── get-real-columns-with-values.html │ │ │ │ │ ├── get-real-columns.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── restore-value-from-parts.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -composite-sql-logger/ │ │ │ │ │ ├── -composite-sql-logger.html │ │ │ │ │ ├── add-logger.html │ │ │ │ │ ├── after-execution.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── log.html │ │ │ │ │ └── remove-logger.html │ │ │ │ ├── -compound-boolean-op/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -concat/ │ │ │ │ │ ├── -concat.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── separator.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -count/ │ │ │ │ │ ├── -count.html │ │ │ │ │ ├── distinct.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -cume-dist/ │ │ │ │ │ ├── -cume-dist.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -current-or-following/ │ │ │ │ │ └── index.html │ │ │ │ ├── -current-or-preceding/ │ │ │ │ │ └── index.html │ │ │ │ ├── -current-row-window-frame-bound/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -custom-enumeration-column-type/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -custom-enumeration-column-type.html │ │ │ │ │ ├── from-db.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── sql.html │ │ │ │ │ ├── to-db.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -custom-function/ │ │ │ │ │ ├── -custom-function.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── function-name.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -custom-long-function.html │ │ │ │ ├── -custom-operator/ │ │ │ │ │ ├── -custom-operator.html │ │ │ │ │ ├── expr1.html │ │ │ │ │ ├── expr2.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── operator-name.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -custom-string-function.html │ │ │ │ ├── -database-api/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── register-dialect.html │ │ │ │ │ ├── config.html │ │ │ │ │ ├── default-fetch-size.html │ │ │ │ │ ├── dialect-mode.html │ │ │ │ │ ├── dialect.html │ │ │ │ │ ├── full-version.html │ │ │ │ │ ├── identifier-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── supports-alter-table-with-add-column.html │ │ │ │ │ ├── supports-alter-table-with-drop-column.html │ │ │ │ │ ├── supports-multiple-result-sets.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── to-string.html │ │ │ │ │ ├── url.html │ │ │ │ │ ├── use-nested-transactions.html │ │ │ │ │ ├── vendor.html │ │ │ │ │ └── version.html │ │ │ │ ├── -database-config/ │ │ │ │ │ ├── -builder/ │ │ │ │ │ │ ├── -builder.html │ │ │ │ │ │ ├── default-fetch-size.html │ │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ │ ├── default-max-attempts.html │ │ │ │ │ │ ├── default-max-retry-delay.html │ │ │ │ │ │ ├── default-min-retry-delay.html │ │ │ │ │ │ ├── default-read-only.html │ │ │ │ │ │ ├── default-schema.html │ │ │ │ │ │ ├── dispatcher.html │ │ │ │ │ │ ├── explicit-dialect.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── keep-loaded-references-out-of-transaction.html │ │ │ │ │ │ ├── log-too-much-result-sets-threshold.html │ │ │ │ │ │ ├── max-entities-to-store-in-cache-per-entity.html │ │ │ │ │ │ ├── preserve-identifier-casing.html │ │ │ │ │ │ ├── preserve-keyword-casing.html │ │ │ │ │ │ ├── sql-logger.html │ │ │ │ │ │ ├── use-nested-transactions.html │ │ │ │ │ │ └── warn-long-queries-duration.html │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── invoke.html │ │ │ │ │ ├── default-fetch-size.html │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ ├── default-max-attempts.html │ │ │ │ │ ├── default-max-retry-delay.html │ │ │ │ │ ├── default-min-retry-delay.html │ │ │ │ │ ├── default-read-only.html │ │ │ │ │ ├── default-schema.html │ │ │ │ │ ├── dispatcher.html │ │ │ │ │ ├── explicit-dialect.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keep-loaded-references-out-of-transaction.html │ │ │ │ │ ├── log-too-much-result-sets-threshold.html │ │ │ │ │ ├── max-entities-to-store-in-cache-per-entity.html │ │ │ │ │ ├── preserve-identifier-casing.html │ │ │ │ │ ├── preserve-keyword-casing.html │ │ │ │ │ ├── sql-logger.html │ │ │ │ │ ├── use-nested-transactions.html │ │ │ │ │ └── warn-long-queries-duration.html │ │ │ │ ├── -ddl-aware/ │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── ddl.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── modify-statement.html │ │ │ │ ├── -decimal-column-type/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -decimal-column-type.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── precision.html │ │ │ │ │ ├── scale.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -dense-rank/ │ │ │ │ │ ├── -dense-rank.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -divide-op/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── with-scale.html │ │ │ │ │ ├── -divide-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -double-column-type/ │ │ │ │ │ ├── -double-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -entity-i-d-column-type/ │ │ │ │ │ ├── -entity-i-d-column-type.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── id-column.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -enumeration-column-type/ │ │ │ │ │ ├── -enumeration-column-type.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── klass.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -enumeration-name-column-type/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -enumeration-name-column-type.html │ │ │ │ │ ├── col-length.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── klass.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── validate-value-before-update.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -eq-op/ │ │ │ │ │ ├── -eq-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -eq-sub-query-op/ │ │ │ │ │ ├── -eq-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -exists/ │ │ │ │ │ ├── -exists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── query.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -experimental-database-migration-api/ │ │ │ │ │ └── index.html │ │ │ │ ├── -experimental-keyword-api/ │ │ │ │ │ └── index.html │ │ │ │ ├── -explain-query/ │ │ │ │ │ ├── -explain-query.html │ │ │ │ │ ├── analyze.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── options.html │ │ │ │ │ └── prepare-s-q-l.html │ │ │ │ ├── -explain-result-row/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -explain-result-row.html │ │ │ │ │ ├── field-index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -expression/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── build.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -expression.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── to-query-builder.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -expression-alias/ │ │ │ │ │ ├── -expression-alias.html │ │ │ │ │ ├── alias.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -expression-with-column-type/ │ │ │ │ │ ├── -expression-with-column-type.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ └── index.html │ │ │ │ ├── -expression-with-column-type-alias/ │ │ │ │ │ ├── -expression-with-column-type-alias.html │ │ │ │ │ ├── alias.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -field-set/ │ │ │ │ │ ├── fields.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── real-fields.html │ │ │ │ │ └── source.html │ │ │ │ ├── -filter-condition/ │ │ │ │ │ └── index.html │ │ │ │ ├── -first-value/ │ │ │ │ │ ├── -first-value.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -float-column-type/ │ │ │ │ │ ├── -float-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -foreign-key-constraint/ │ │ │ │ │ ├── -foreign-key-constraint.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── custom-fk-name.html │ │ │ │ │ ├── delete-rule.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── fk-name.html │ │ │ │ │ ├── from-table-name.html │ │ │ │ │ ├── from-table.html │ │ │ │ │ ├── from.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modify-statement.html │ │ │ │ │ ├── plus.html │ │ │ │ │ ├── references.html │ │ │ │ │ ├── target-of.html │ │ │ │ │ ├── target-table-name.html │ │ │ │ │ ├── target-table.html │ │ │ │ │ ├── target.html │ │ │ │ │ ├── to-string.html │ │ │ │ │ └── update-rule.html │ │ │ │ ├── -function/ │ │ │ │ │ ├── -function.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ └── index.html │ │ │ │ ├── -greater-eq-op/ │ │ │ │ │ ├── -greater-eq-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -greater-eq-sub-query-op/ │ │ │ │ │ ├── -greater-eq-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -greater-op/ │ │ │ │ │ ├── -greater-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -greater-sub-query-op/ │ │ │ │ │ ├── -greater-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -group-concat/ │ │ │ │ │ ├── -group-concat.html │ │ │ │ │ ├── distinct.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ ├── separator.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -i-column-type/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── nullable.html │ │ │ │ │ ├── parameter-marker.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── set-parameter.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── validate-value-before-update.html │ │ │ │ │ ├── value-as-default-string.html │ │ │ │ │ ├── value-from-d-b.html │ │ │ │ │ ├── value-to-d-b.html │ │ │ │ │ └── value-to-string.html │ │ │ │ ├── -i-date-column-type/ │ │ │ │ │ ├── has-time-part.html │ │ │ │ │ └── index.html │ │ │ │ ├── -i-expression-alias/ │ │ │ │ │ ├── alias-only-expression.html │ │ │ │ │ ├── alias.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── query-builder.html │ │ │ │ ├── -i-sql-expression-builder/ │ │ │ │ │ ├── as-literal.html │ │ │ │ │ ├── between.html │ │ │ │ │ ├── bitwise-and.html │ │ │ │ │ ├── bitwise-or.html │ │ │ │ │ ├── bitwise-xor.html │ │ │ │ │ ├── case.html │ │ │ │ │ ├── coalesce.html │ │ │ │ │ ├── concat.html │ │ │ │ │ ├── cume-dist.html │ │ │ │ │ ├── dense-rank.html │ │ │ │ │ ├── div.html │ │ │ │ │ ├── eq-sub-query.html │ │ │ │ │ ├── eq.html │ │ │ │ │ ├── first-value.html │ │ │ │ │ ├── greater-eq-sub-query.html │ │ │ │ │ ├── greater-eq.html │ │ │ │ │ ├── greater-sub-query.html │ │ │ │ │ ├── greater.html │ │ │ │ │ ├── has-flag.html │ │ │ │ │ ├── in-list.html │ │ │ │ │ ├── in-sub-query.html │ │ │ │ │ ├── in-table.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── int-to-decimal.html │ │ │ │ │ ├── is-distinct-from.html │ │ │ │ │ ├── is-not-distinct-from.html │ │ │ │ │ ├── is-not-null.html │ │ │ │ │ ├── is-null-or-empty.html │ │ │ │ │ ├── is-null.html │ │ │ │ │ ├── lag.html │ │ │ │ │ ├── last-value.html │ │ │ │ │ ├── lead.html │ │ │ │ │ ├── less-eq-sub-query.html │ │ │ │ │ ├── less-eq.html │ │ │ │ │ ├── less-sub-query.html │ │ │ │ │ ├── less.html │ │ │ │ │ ├── like.html │ │ │ │ │ ├── match.html │ │ │ │ │ ├── minus.html │ │ │ │ │ ├── mod.html │ │ │ │ │ ├── neq.html │ │ │ │ │ ├── not-eq-sub-query.html │ │ │ │ │ ├── not-in-list.html │ │ │ │ │ ├── not-in-sub-query.html │ │ │ │ │ ├── not-in-table.html │ │ │ │ │ ├── not-like.html │ │ │ │ │ ├── nth-value.html │ │ │ │ │ ├── ntile.html │ │ │ │ │ ├── percent-rank.html │ │ │ │ │ ├── plus.html │ │ │ │ │ ├── rank.html │ │ │ │ │ ├── regexp.html │ │ │ │ │ ├── rem.html │ │ │ │ │ ├── row-number.html │ │ │ │ │ ├── times.html │ │ │ │ │ └── wrap.html │ │ │ │ ├── -in-sub-query-op/ │ │ │ │ │ ├── -in-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -index/ │ │ │ │ │ ├── -index.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── custom-name.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── filter-condition.html │ │ │ │ │ ├── functions-table.html │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index-name.html │ │ │ │ │ ├── index-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modify-statement.html │ │ │ │ │ ├── only-name-differ.html │ │ │ │ │ ├── table.html │ │ │ │ │ ├── to-string.html │ │ │ │ │ └── unique.html │ │ │ │ ├── -integer-column-type/ │ │ │ │ │ ├── -integer-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -internal-api/ │ │ │ │ │ └── index.html │ │ │ │ ├── -is-distinct-from-op/ │ │ │ │ │ ├── -is-distinct-from-op.html │ │ │ │ │ ├── expression1.html │ │ │ │ │ ├── expression2.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -is-not-distinct-from-op/ │ │ │ │ │ ├── -is-not-distinct-from-op.html │ │ │ │ │ ├── expression1.html │ │ │ │ │ ├── expression2.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -is-not-null-op/ │ │ │ │ │ ├── -is-not-null-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -is-null-op/ │ │ │ │ │ ├── -is-null-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -join/ │ │ │ │ │ ├── -join.html │ │ │ │ │ ├── already-in-join.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── cross-join.html │ │ │ │ │ ├── describe.html │ │ │ │ │ ├── fields.html │ │ │ │ │ ├── full-join.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inner-join.html │ │ │ │ │ ├── join.html │ │ │ │ │ ├── left-join.html │ │ │ │ │ ├── right-join.html │ │ │ │ │ └── table.html │ │ │ │ ├── -join-condition/ │ │ │ │ │ └── index.html │ │ │ │ ├── -join-type/ │ │ │ │ │ ├── -c-r-o-s-s/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -f-u-l-l/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -i-n-n-e-r/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -l-e-f-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -r-i-g-h-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -json-column-marker/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── needs-binary-format-cast.html │ │ │ │ │ └── uses-binary-format.html │ │ │ │ ├── -key/ │ │ │ │ │ ├── -key.html │ │ │ │ │ └── index.html │ │ │ │ ├── -lag/ │ │ │ │ │ ├── -lag.html │ │ │ │ │ ├── default-value.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -large-text-column-type/ │ │ │ │ │ ├── -large-text-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── precise-type.html │ │ │ │ ├── -last-value/ │ │ │ │ │ ├── -last-value.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -lead/ │ │ │ │ │ ├── -lead.html │ │ │ │ │ ├── default-value.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -less-eq-op/ │ │ │ │ │ ├── -less-eq-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -less-eq-sub-query-op/ │ │ │ │ │ ├── -less-eq-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -less-op/ │ │ │ │ │ ├── -less-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -less-sub-query-op/ │ │ │ │ │ ├── -less-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -like-escape-op/ │ │ │ │ │ ├── -like-escape-op.html │ │ │ │ │ ├── escape-char.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -like-pattern/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── of-literal.html │ │ │ │ │ ├── -like-pattern.html │ │ │ │ │ ├── escape-char.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pattern.html │ │ │ │ │ └── plus.html │ │ │ │ ├── -literal-op/ │ │ │ │ │ ├── -literal-op.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── to-query-builder.html │ │ │ │ │ └── value.html │ │ │ │ ├── -locate/ │ │ │ │ │ ├── -locate.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── substring.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -long-column-type/ │ │ │ │ │ ├── -long-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -lower-case/ │ │ │ │ │ ├── -lower-case.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -max/ │ │ │ │ │ ├── -max.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -medium-text-column-type/ │ │ │ │ │ ├── -medium-text-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── precise-type.html │ │ │ │ ├── -min/ │ │ │ │ │ ├── -min.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -minus-op/ │ │ │ │ │ ├── -minus-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -mod-op/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -mod-op.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── expr1.html │ │ │ │ │ ├── expr2.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -neq-op/ │ │ │ │ │ ├── -neq-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -next-val/ │ │ │ │ │ ├── -int-next-val/ │ │ │ │ │ │ ├── -int-next-val.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -long-next-val/ │ │ │ │ │ │ ├── -long-next-val.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── seq.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -no-op-conversion/ │ │ │ │ │ ├── -no-op-conversion.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -not-eq-sub-query-op/ │ │ │ │ │ ├── -not-eq-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -not-exists/ │ │ │ │ │ ├── -not-exists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── query.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -not-in-sub-query-op/ │ │ │ │ │ ├── -not-in-sub-query-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -not-op/ │ │ │ │ │ ├── -not-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -nth-value/ │ │ │ │ │ ├── -nth-value.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── n.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -ntile/ │ │ │ │ │ ├── -ntile.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── num-buckets.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -nullable-column-with-transform/ │ │ │ │ │ ├── -nullable-column-with-transform.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── unwrap-recursive.html │ │ │ │ │ ├── value-from-d-b.html │ │ │ │ │ ├── value-to-d-b.html │ │ │ │ │ └── value-to-string.html │ │ │ │ ├── -offset-following-window-frame-bound/ │ │ │ │ │ ├── -offset-following-window-frame-bound.html │ │ │ │ │ └── index.html │ │ │ │ ├── -offset-preceding-window-frame-bound/ │ │ │ │ │ ├── -offset-preceding-window-frame-bound.html │ │ │ │ │ └── index.html │ │ │ │ ├── -offset-window-frame-bound/ │ │ │ │ │ ├── -offset-window-frame-bound.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -op/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── build.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── null-op.html │ │ │ │ │ ├── -f-a-l-s-e/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── to-query-builder.html │ │ │ │ │ ├── -op.html │ │ │ │ │ ├── -t-r-u-e/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── to-query-builder.html │ │ │ │ │ └── index.html │ │ │ │ ├── -or-bit-op/ │ │ │ │ │ ├── -or-bit-op.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── expr1.html │ │ │ │ │ ├── expr2.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -or-op/ │ │ │ │ │ ├── -or-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -percent-rank/ │ │ │ │ │ ├── -percent-rank.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -plus-op/ │ │ │ │ │ ├── -plus-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -query-alias/ │ │ │ │ │ ├── -query-alias.html │ │ │ │ │ ├── alias.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── cross-join.html │ │ │ │ │ ├── describe.html │ │ │ │ │ ├── fields.html │ │ │ │ │ ├── full-join.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inner-join.html │ │ │ │ │ ├── join.html │ │ │ │ │ ├── left-join.html │ │ │ │ │ ├── query.html │ │ │ │ │ └── right-join.html │ │ │ │ ├── -query-builder/ │ │ │ │ │ ├── -query-builder.html │ │ │ │ │ ├── append-to.html │ │ │ │ │ ├── append.html │ │ │ │ │ ├── args.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── invoke.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ ├── register-argument.html │ │ │ │ │ ├── register-arguments.html │ │ │ │ │ ├── to-string.html │ │ │ │ │ └── unary-plus.html │ │ │ │ ├── -query-parameter/ │ │ │ │ │ ├── -query-parameter.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── to-query-builder.html │ │ │ │ │ └── value.html │ │ │ │ ├── -random/ │ │ │ │ │ ├── -random.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── seed.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -rank/ │ │ │ │ │ ├── -rank.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -reference-option/ │ │ │ │ │ ├── -c-a-s-c-a-d-e/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -n-o_-a-c-t-i-o-n/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -r-e-s-t-r-i-c-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -s-e-t_-d-e-f-a-u-l-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -s-e-t_-n-u-l-l/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── to-string.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -regexp-op/ │ │ │ │ │ ├── -regexp-op.html │ │ │ │ │ ├── case-sensitive.html │ │ │ │ │ ├── expr1.html │ │ │ │ │ ├── expr2.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -result-row/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── create-and-fill-defaults.html │ │ │ │ │ │ ├── create-and-fill-values.html │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -result-row.html │ │ │ │ │ ├── field-index.html │ │ │ │ │ ├── get-or-null.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── has-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── set.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -row-number/ │ │ │ │ │ ├── -row-number.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -schema/ │ │ │ │ │ ├── -schema.html │ │ │ │ │ ├── authorization.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── ddl.html │ │ │ │ │ ├── default-tablespace.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── identifier.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── on.html │ │ │ │ │ ├── password.html │ │ │ │ │ ├── quota.html │ │ │ │ │ ├── set-schema-statement.html │ │ │ │ │ └── temporary-tablespace.html │ │ │ │ ├── -schema-utility-api/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── -a-l-t-e-r_-t-a-b-l-e-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -c-o-l-u-m-n-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -c-o-n-s-t-r-a-i-n-t-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -c-r-e-a-t-e_-s-e-q-u-e-n-c-e-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -c-r-e-a-t-e_-t-a-b-l-e-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -e-x-e-c-u-t-e_-a-l-t-e-r_-t-a-b-l-e-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -e-x-e-c-u-t-e_-c-r-e-a-t-e_-t-a-b-l-e-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -m-a-p-p-i-n-g_-c-o-n-s-i-s-t-e-n-c-e_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ ├── -p-r-i-m-a-r-y_-k-e-y-s_-l-o-g_-m-e-s-s-a-g-e.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -schema-utility-api.html │ │ │ │ │ └── index.html │ │ │ │ ├── -select/ │ │ │ │ │ └── index.html │ │ │ │ ├── -sequence/ │ │ │ │ │ ├── -sequence.html │ │ │ │ │ ├── cache.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── cycle.html │ │ │ │ │ ├── ddl.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── identifier.html │ │ │ │ │ ├── increment-by.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-value.html │ │ │ │ │ ├── min-value.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── start-with.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -short-column-type/ │ │ │ │ │ ├── -short-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -slf4j-sql-debug-logger/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── log.html │ │ │ │ ├── -slice/ │ │ │ │ │ ├── -slice.html │ │ │ │ │ ├── fields.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── source.html │ │ │ │ ├── -sort-order/ │ │ │ │ │ ├── -a-s-c/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -a-s-c_-n-u-l-l-s_-f-i-r-s-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -a-s-c_-n-u-l-l-s_-l-a-s-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -d-e-s-c/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -d-e-s-c_-n-u-l-l-s_-f-i-r-s-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -d-e-s-c_-n-u-l-l-s_-l-a-s-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── code.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -sql-expression-builder/ │ │ │ │ │ └── index.html │ │ │ │ ├── -sql-logger/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── log.html │ │ │ │ ├── -std-dev-pop/ │ │ │ │ │ ├── -std-dev-pop.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -std-dev-samp/ │ │ │ │ │ ├── -std-dev-samp.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -std-out-sql-logger/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── log.html │ │ │ │ ├── -string-column-type/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -string-column-type.html │ │ │ │ │ ├── collate.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -sub-query-op/ │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── operator.html │ │ │ │ │ ├── query.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -substring/ │ │ │ │ │ ├── -substring.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── length.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -sum/ │ │ │ │ │ ├── -sum.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -table/ │ │ │ │ │ ├── --index--.html │ │ │ │ │ ├── -dual/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -primary-key/ │ │ │ │ │ │ ├── -primary-key.html │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── name.html │ │ │ │ │ ├── -table.html │ │ │ │ │ ├── array.html │ │ │ │ │ ├── auto-generate.html │ │ │ │ │ ├── auto-inc-column.html │ │ │ │ │ ├── auto-increment.html │ │ │ │ │ ├── binary.html │ │ │ │ │ ├── blob.html │ │ │ │ │ ├── bool.html │ │ │ │ │ ├── byte.html │ │ │ │ │ ├── char.html │ │ │ │ │ ├── check-constraints.html │ │ │ │ │ ├── check.html │ │ │ │ │ ├── client-default.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── create-statement.html │ │ │ │ │ ├── cross-join.html │ │ │ │ │ ├── custom-enumeration.html │ │ │ │ │ ├── database-generated.html │ │ │ │ │ ├── decimal.html │ │ │ │ │ ├── default-expression.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── describe.html │ │ │ │ │ ├── double.html │ │ │ │ │ ├── drop-statement.html │ │ │ │ │ ├── entity-id.html │ │ │ │ │ ├── enumeration-by-name.html │ │ │ │ │ ├── enumeration.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── float.html │ │ │ │ │ ├── foreign-key.html │ │ │ │ │ ├── foreign-keys.html │ │ │ │ │ ├── full-join.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── indices.html │ │ │ │ │ ├── inner-join.html │ │ │ │ │ ├── integer.html │ │ │ │ │ ├── join.html │ │ │ │ │ ├── large-text.html │ │ │ │ │ ├── left-join.html │ │ │ │ │ ├── long.html │ │ │ │ │ ├── medium-text.html │ │ │ │ │ ├── modify-statement.html │ │ │ │ │ ├── name-in-database-case-unquoted.html │ │ │ │ │ ├── name-in-database-case.html │ │ │ │ │ ├── null-transform.html │ │ │ │ │ ├── nullable.html │ │ │ │ │ ├── opt-reference.html │ │ │ │ │ ├── primary-key.html │ │ │ │ │ ├── reference.html │ │ │ │ │ ├── references.html │ │ │ │ │ ├── register-column.html │ │ │ │ │ ├── register-composite-column.html │ │ │ │ │ ├── replace-column.html │ │ │ │ │ ├── right-join.html │ │ │ │ │ ├── schema-name.html │ │ │ │ │ ├── sequences.html │ │ │ │ │ ├── short.html │ │ │ │ │ ├── table-name.html │ │ │ │ │ ├── text.html │ │ │ │ │ ├── transform.html │ │ │ │ │ ├── ubyte.html │ │ │ │ │ ├── uinteger.html │ │ │ │ │ ├── ulong.html │ │ │ │ │ ├── unique-index.html │ │ │ │ │ ├── ushort.html │ │ │ │ │ ├── uuid.html │ │ │ │ │ ├── varchar.html │ │ │ │ │ └── with-definition.html │ │ │ │ ├── -text-column-type/ │ │ │ │ │ ├── -text-column-type.html │ │ │ │ │ ├── eager-loading.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── precise-type.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ └── sql-type.html │ │ │ │ ├── -times-op/ │ │ │ │ │ ├── -times-op.html │ │ │ │ │ └── index.html │ │ │ │ ├── -transaction/ │ │ │ │ │ ├── -transaction.html │ │ │ │ │ ├── add-logger.html │ │ │ │ │ ├── debug.html │ │ │ │ │ ├── duration.html │ │ │ │ │ ├── full-identity.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── identity.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── query-timeout.html │ │ │ │ │ ├── statement-count.html │ │ │ │ │ ├── statement-stats.html │ │ │ │ │ ├── statements.html │ │ │ │ │ ├── transaction-id.html │ │ │ │ │ └── warn-long-queries-duration.html │ │ │ │ ├── -trim/ │ │ │ │ │ ├── -trim.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -u-byte-column-type/ │ │ │ │ │ ├── -u-byte-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── set-parameter.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -u-integer-column-type/ │ │ │ │ │ ├── -u-integer-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── set-parameter.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -u-long-column-type/ │ │ │ │ │ ├── -u-long-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -u-short-column-type/ │ │ │ │ │ ├── -u-short-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── set-parameter.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -unbounded-following-window-frame-bound/ │ │ │ │ │ ├── -unbounded-following-window-frame-bound.html │ │ │ │ │ └── index.html │ │ │ │ ├── -unbounded-preceding-window-frame-bound/ │ │ │ │ │ ├── -unbounded-preceding-window-frame-bound.html │ │ │ │ │ └── index.html │ │ │ │ ├── -unbounded-window-frame-bound/ │ │ │ │ │ ├── -unbounded-window-frame-bound.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -upper-case/ │ │ │ │ │ ├── -upper-case.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -user-data-holder/ │ │ │ │ │ ├── -user-data-holder.html │ │ │ │ │ ├── get-or-create.html │ │ │ │ │ ├── get-user-data.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── put-user-data.html │ │ │ │ │ └── remove-user-data.html │ │ │ │ ├── -uuid-column-type/ │ │ │ │ │ ├── -uuid-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -value-case/ │ │ │ │ │ ├── -value-case.html │ │ │ │ │ ├── -when.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── value.html │ │ │ │ ├── -value-case-when/ │ │ │ │ │ ├── -else.html │ │ │ │ │ ├── -value-case-when.html │ │ │ │ │ ├── -when.html │ │ │ │ │ ├── cases.html │ │ │ │ │ ├── expressions.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── value.html │ │ │ │ ├── -value-case-when-else/ │ │ │ │ │ ├── -value-case-when-else.html │ │ │ │ │ ├── cases.html │ │ │ │ │ ├── else-result.html │ │ │ │ │ ├── expressions.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── value.html │ │ │ │ ├── -var-char-column-type/ │ │ │ │ │ ├── -var-char-column-type.html │ │ │ │ │ ├── col-length.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── precise-type.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ └── validate-value-before-update.html │ │ │ │ ├── -var-pop/ │ │ │ │ │ ├── -var-pop.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -var-samp/ │ │ │ │ │ ├── -var-samp.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -version/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── from.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -version.html │ │ │ │ │ ├── covers.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── major.html │ │ │ │ │ ├── minor.html │ │ │ │ │ ├── patch.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -window-frame-bound/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── current-row.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── offset-following.html │ │ │ │ │ │ ├── offset-preceding.html │ │ │ │ │ │ ├── unbounded-following.html │ │ │ │ │ │ └── unbounded-preceding.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -window-frame-bound-direction/ │ │ │ │ │ ├── -f-o-l-l-o-w-i-n-g/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -p-r-e-c-e-d-i-n-g/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -window-frame-clause/ │ │ │ │ │ ├── -window-frame-clause.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -window-frame-unit/ │ │ │ │ │ ├── -g-r-o-u-p-s/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -r-a-n-g-e/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -r-o-w-s/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -window-function/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── over.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -window-function-definition/ │ │ │ │ │ ├── -window-function-definition.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── groups.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ ├── partition-by.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rows.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -xor-bit-op/ │ │ │ │ │ ├── -xor-bit-op.html │ │ │ │ │ ├── column-type.html │ │ │ │ │ ├── expr1.html │ │ │ │ │ ├── expr2.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── alias.html │ │ │ │ ├── all-from.html │ │ │ │ ├── and-if-not-null.html │ │ │ │ ├── and-not.html │ │ │ │ ├── and.html │ │ │ │ ├── any-from.html │ │ │ │ ├── append-to.html │ │ │ │ ├── append.html │ │ │ │ ├── array-literal.html │ │ │ │ ├── array-param.html │ │ │ │ ├── as-literal.html │ │ │ │ ├── auto-inc-column-type.html │ │ │ │ ├── avg.html │ │ │ │ ├── between.html │ │ │ │ ├── bitwise-and.html │ │ │ │ ├── bitwise-or.html │ │ │ │ ├── bitwise-xor.html │ │ │ │ ├── blob-param.html │ │ │ │ ├── boolean-literal.html │ │ │ │ ├── boolean-param.html │ │ │ │ ├── byte-literal.html │ │ │ │ ├── byte-param.html │ │ │ │ ├── case.html │ │ │ │ ├── cast-to.html │ │ │ │ ├── char-length.html │ │ │ │ ├── coalesce.html │ │ │ │ ├── column-transformer.html │ │ │ │ ├── compound-and.html │ │ │ │ ├── compound-or.html │ │ │ │ ├── concat.html │ │ │ │ ├── count-distinct.html │ │ │ │ ├── count.html │ │ │ │ ├── cross-join.html │ │ │ │ ├── cume-dist.html │ │ │ │ ├── decimal-literal.html │ │ │ │ ├── decimal-param.html │ │ │ │ ├── dense-rank.html │ │ │ │ ├── div.html │ │ │ │ ├── double-literal.html │ │ │ │ ├── double-param.html │ │ │ │ ├── eq-sub-query.html │ │ │ │ ├── eq.html │ │ │ │ ├── exists.html │ │ │ │ ├── exposed-logger.html │ │ │ │ ├── first-value.html │ │ │ │ ├── float-literal.html │ │ │ │ ├── float-param.html │ │ │ │ ├── full-join.html │ │ │ │ ├── function.html │ │ │ │ ├── get.html │ │ │ │ ├── greater-eq-sub-query.html │ │ │ │ ├── greater-eq.html │ │ │ │ ├── greater-sub-query.html │ │ │ │ ├── greater.html │ │ │ │ ├── group-concat.html │ │ │ │ ├── has-flag.html │ │ │ │ ├── id-param.html │ │ │ │ ├── in-list.html │ │ │ │ ├── in-sub-query.html │ │ │ │ ├── in-table.html │ │ │ │ ├── index.html │ │ │ │ ├── inner-join.html │ │ │ │ ├── int-literal.html │ │ │ │ ├── int-param.html │ │ │ │ ├── int-to-decimal.html │ │ │ │ ├── is-auto-inc.html │ │ │ │ ├── is-distinct-from.html │ │ │ │ ├── is-not-distinct-from.html │ │ │ │ ├── is-not-null.html │ │ │ │ ├── is-null-or-empty.html │ │ │ │ ├── is-null.html │ │ │ │ ├── join-query.html │ │ │ │ ├── lag.html │ │ │ │ ├── last-query-alias.html │ │ │ │ ├── last-value.html │ │ │ │ ├── lead.html │ │ │ │ ├── left-join.html │ │ │ │ ├── less-eq-sub-query.html │ │ │ │ ├── less-eq.html │ │ │ │ ├── less-sub-query.html │ │ │ │ ├── less.html │ │ │ │ ├── like.html │ │ │ │ ├── locate.html │ │ │ │ ├── long-literal.html │ │ │ │ ├── long-param.html │ │ │ │ ├── lower-case.html │ │ │ │ ├── match.html │ │ │ │ ├── max.html │ │ │ │ ├── min.html │ │ │ │ ├── minus.html │ │ │ │ ├── mod.html │ │ │ │ ├── neq.html │ │ │ │ ├── next-int-val.html │ │ │ │ ├── next-long-val.html │ │ │ │ ├── not-eq-sub-query.html │ │ │ │ ├── not-exists.html │ │ │ │ ├── not-in-list.html │ │ │ │ ├── not-in-sub-query.html │ │ │ │ ├── not-in-table.html │ │ │ │ ├── not-like.html │ │ │ │ ├── not.html │ │ │ │ ├── nth-value.html │ │ │ │ ├── ntile.html │ │ │ │ ├── or-if-not-null.html │ │ │ │ ├── or-not.html │ │ │ │ ├── or.html │ │ │ │ ├── percent-rank.html │ │ │ │ ├── plus.html │ │ │ │ ├── rank.html │ │ │ │ ├── regexp.html │ │ │ │ ├── rem.html │ │ │ │ ├── right-join.html │ │ │ │ ├── row-number.html │ │ │ │ ├── short-literal.html │ │ │ │ ├── short-param.html │ │ │ │ ├── slice.html │ │ │ │ ├── std-dev-pop.html │ │ │ │ ├── std-dev-samp.html │ │ │ │ ├── string-literal.html │ │ │ │ ├── string-param.html │ │ │ │ ├── substring.html │ │ │ │ ├── sum.html │ │ │ │ ├── target-tables.html │ │ │ │ ├── times.html │ │ │ │ ├── trim.html │ │ │ │ ├── ubyte-literal.html │ │ │ │ ├── ubyte-param.html │ │ │ │ ├── uint-literal.html │ │ │ │ ├── uint-param.html │ │ │ │ ├── ulong-literal.html │ │ │ │ ├── ulong-param.html │ │ │ │ ├── upper-case.html │ │ │ │ ├── ushort-literal.html │ │ │ │ ├── ushort-param.html │ │ │ │ ├── var-pop.html │ │ │ │ ├── var-samp.html │ │ │ │ ├── wrap-as-expression.html │ │ │ │ └── wrap.html │ │ │ ├── org.jetbrains.exposed.v1.core.dao.id/ │ │ │ │ ├── -composite-i-d/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── invoke.html │ │ │ │ │ ├── contains.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── set.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -composite-id-table/ │ │ │ │ │ ├── -composite-id-table.html │ │ │ │ │ ├── id.html │ │ │ │ │ └── index.html │ │ │ │ ├── -entity-i-d/ │ │ │ │ │ ├── -entity-i-d.html │ │ │ │ │ ├── _value.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── table.html │ │ │ │ │ ├── to-string.html │ │ │ │ │ └── value.html │ │ │ │ ├── -entity-i-d-factory/ │ │ │ │ │ ├── create-entity-i-d.html │ │ │ │ │ └── index.html │ │ │ │ ├── -entity-i-d-function-provider/ │ │ │ │ │ ├── create-entity-i-d.html │ │ │ │ │ └── index.html │ │ │ │ ├── -id-table/ │ │ │ │ │ ├── -id-table.html │ │ │ │ │ ├── id-columns.html │ │ │ │ │ ├── id.html │ │ │ │ │ └── index.html │ │ │ │ ├── -int-id-table/ │ │ │ │ │ ├── -int-id-table.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── primary-key.html │ │ │ │ ├── -long-id-table/ │ │ │ │ │ ├── -long-id-table.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── primary-key.html │ │ │ │ ├── -u-int-id-table/ │ │ │ │ │ ├── -u-int-id-table.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── primary-key.html │ │ │ │ ├── -u-long-id-table/ │ │ │ │ │ ├── -u-long-id-table.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── primary-key.html │ │ │ │ ├── -uuid-table/ │ │ │ │ │ ├── -uuid-table.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── primary-key.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.dao.id.java/ │ │ │ │ ├── -u-u-i-d-table/ │ │ │ │ │ ├── -u-u-i-d-table.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── primary-key.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.datetime/ │ │ │ │ ├── -duration-column-type/ │ │ │ │ │ ├── -duration-column-type.html │ │ │ │ │ ├── from-duration.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── to-duration.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -instant-column-type/ │ │ │ │ │ ├── -instant-column-type.html │ │ │ │ │ ├── from-instant.html │ │ │ │ │ ├── has-time-part.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── to-instant.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -local-date-column-type/ │ │ │ │ │ ├── -local-date-column-type.html │ │ │ │ │ ├── from-local-date.html │ │ │ │ │ ├── has-time-part.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── to-local-date.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -local-date-time-column-type/ │ │ │ │ │ ├── -local-date-time-column-type.html │ │ │ │ │ ├── from-local-date-time.html │ │ │ │ │ ├── has-time-part.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── to-local-date-time.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -local-time-column-type/ │ │ │ │ │ ├── -local-time-column-type.html │ │ │ │ │ ├── from-local-time.html │ │ │ │ │ ├── has-time-part.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── to-local-time.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── -offset-date-time-column-type/ │ │ │ │ │ ├── -offset-date-time-column-type.html │ │ │ │ │ ├── from-offset-date-time.html │ │ │ │ │ ├── has-time-part.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ ├── read-object.html │ │ │ │ │ ├── sql-type.html │ │ │ │ │ ├── to-offset-date-time.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.functions.array/ │ │ │ │ ├── -array-get/ │ │ │ │ │ ├── --index--.html │ │ │ │ │ ├── -array-get.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -array-slice/ │ │ │ │ │ ├── -array-slice.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lower.html │ │ │ │ │ ├── to-query-builder.html │ │ │ │ │ └── upper.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.functions.math/ │ │ │ │ ├── -a-cos-function/ │ │ │ │ │ ├── -a-cos-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -a-sin-function/ │ │ │ │ │ ├── -a-sin-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -a-tan-function/ │ │ │ │ │ ├── -a-tan-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -abs-function/ │ │ │ │ │ ├── -abs-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -ceiling-function/ │ │ │ │ │ ├── -ceiling-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -cos-function/ │ │ │ │ │ ├── -cos-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -cot-function/ │ │ │ │ │ ├── -cot-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -degrees-function/ │ │ │ │ │ ├── -degrees-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -exp-function/ │ │ │ │ │ ├── -exp-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -floor-function/ │ │ │ │ │ ├── -floor-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -pi-function/ │ │ │ │ │ └── index.html │ │ │ │ ├── -power-function/ │ │ │ │ │ ├── -power-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -radians-function/ │ │ │ │ │ ├── -radians-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -round-function/ │ │ │ │ │ ├── -round-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -sign-function/ │ │ │ │ │ ├── -sign-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -sin-function/ │ │ │ │ │ ├── -sin-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -sqrt-function/ │ │ │ │ │ ├── -sqrt-function.html │ │ │ │ │ └── index.html │ │ │ │ ├── -tan-function/ │ │ │ │ │ ├── -tan-function.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.java/ │ │ │ │ ├── -u-u-i-d-column-type/ │ │ │ │ │ ├── -u-u-i-d-column-type.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ │ └── value-from-d-b.html │ │ │ │ ├── index.html │ │ │ │ └── java-u-u-i-d.html │ │ │ ├── org.jetbrains.exposed.v1.core.ops/ │ │ │ │ ├── -all-any-from-array-op/ │ │ │ │ │ ├── -all-any-from-array-op.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── register-sub-search-argument.html │ │ │ │ ├── -all-any-from-base-op/ │ │ │ │ │ ├── -all-any-from-base-op.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-any.html │ │ │ │ │ ├── register-sub-search-argument.html │ │ │ │ │ ├── sub-search.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -all-any-from-expression-op/ │ │ │ │ │ ├── -all-any-from-expression-op.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── register-sub-search-argument.html │ │ │ │ ├── -all-any-from-sub-query-op/ │ │ │ │ │ ├── -all-any-from-sub-query-op.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── register-sub-search-argument.html │ │ │ │ ├── -all-any-from-table-op/ │ │ │ │ │ ├── -all-any-from-table-op.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── register-sub-search-argument.html │ │ │ │ ├── -in-list-or-not-in-list-base-op/ │ │ │ │ │ ├── -in-list-or-not-in-list-base-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-in-list.html │ │ │ │ │ ├── list.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -in-table-op/ │ │ │ │ │ ├── -in-table-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-in-table.html │ │ │ │ │ ├── table.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -multiple-in-list-op/ │ │ │ │ │ ├── -multiple-in-list-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── to-query-builder.html │ │ │ │ ├── -pair-in-list-op/ │ │ │ │ │ ├── -pair-in-list-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ └── index.html │ │ │ │ ├── -single-value-in-list-op/ │ │ │ │ │ ├── -single-value-in-list-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ └── index.html │ │ │ │ ├── -triple-in-list-op/ │ │ │ │ │ ├── -triple-in-list-op.html │ │ │ │ │ ├── expr.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.statements/ │ │ │ │ ├── -batch-data-inconsistent-exception/ │ │ │ │ │ ├── -batch-data-inconsistent-exception.html │ │ │ │ │ └── index.html │ │ │ │ ├── -batch-insert-statement/ │ │ │ │ │ ├── -batch-insert-statement.html │ │ │ │ │ ├── add-batch.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── remove-last-batch.html │ │ │ │ │ ├── set.html │ │ │ │ │ └── should-return-generated-values.html │ │ │ │ ├── -batch-replace-statement/ │ │ │ │ │ ├── -batch-replace-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── prepare-s-q-l.html │ │ │ │ ├── -batch-update-statement/ │ │ │ │ │ ├── -batch-update-statement.html │ │ │ │ │ ├── add-batch.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── first-data-set.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── table.html │ │ │ │ │ └── update.html │ │ │ │ ├── -batch-upsert-statement/ │ │ │ │ │ ├── -batch-upsert-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keys.html │ │ │ │ │ ├── on-update-exclude.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ └── where.html │ │ │ │ ├── -delete-statement/ │ │ │ │ │ ├── -delete-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-ignore.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── target-tables.html │ │ │ │ │ ├── targets-set.html │ │ │ │ │ └── where.html │ │ │ │ ├── -global-statement-interceptor/ │ │ │ │ │ └── index.html │ │ │ │ ├── -insert-select-statement/ │ │ │ │ │ ├── -insert-select-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-ignore.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ └── select-query.html │ │ │ │ ├── -insert-statement/ │ │ │ │ │ ├── -insert-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── get-or-null.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inserted-count.html │ │ │ │ │ ├── is-ignore.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── resulted-values.html │ │ │ │ │ └── table.html │ │ │ │ ├── -merge-select-statement/ │ │ │ │ │ ├── -merge-select-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── on.html │ │ │ │ │ └── prepare-s-q-l.html │ │ │ │ ├── -merge-statement/ │ │ │ │ │ ├── -clause/ │ │ │ │ │ │ ├── -clause.html │ │ │ │ │ │ ├── action.html │ │ │ │ │ │ ├── and.html │ │ │ │ │ │ ├── arguments.html │ │ │ │ │ │ ├── delete-where.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── overriding-system-value.html │ │ │ │ │ │ ├── overriding-user-value.html │ │ │ │ │ │ └── type.html │ │ │ │ │ ├── -clause-action/ │ │ │ │ │ │ ├── -d-e-l-e-t-e/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -d-o_-n-o-t-h-i-n-g/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -i-n-s-e-r-t/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -u-p-d-a-t-e/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ └── values.html │ │ │ │ │ ├── -clause-condition/ │ │ │ │ │ │ ├── -m-a-t-c-h-e-d/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -n-o-t_-m-a-t-c-h-e-d/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ └── values.html │ │ │ │ │ ├── -merge-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── table.html │ │ │ │ │ ├── when-matched-delete.html │ │ │ │ │ ├── when-matched-do-nothing.html │ │ │ │ │ ├── when-matched-update.html │ │ │ │ │ ├── when-not-matched-do-nothing.html │ │ │ │ │ └── when-not-matched-insert.html │ │ │ │ ├── -merge-table-statement/ │ │ │ │ │ ├── -merge-table-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── prepare-s-q-l.html │ │ │ │ ├── -replace-select-statement/ │ │ │ │ │ ├── -replace-select-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── prepare-s-q-l.html │ │ │ │ ├── -replace-statement/ │ │ │ │ │ ├── -replace-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── prepare-s-q-l.html │ │ │ │ ├── -returning-statement/ │ │ │ │ │ ├── -returning-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── main-statement.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── returning-expressions.html │ │ │ │ │ └── table.html │ │ │ │ ├── -s-q-l-server-batch-insert-statement/ │ │ │ │ │ ├── -s-q-l-server-batch-insert-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── prepare-s-q-l.html │ │ │ │ ├── -statement/ │ │ │ │ │ ├── -statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── targets.html │ │ │ │ │ └── type.html │ │ │ │ ├── -statement-builder/ │ │ │ │ │ ├── batch-insert.html │ │ │ │ │ ├── batch-replace.html │ │ │ │ │ ├── batch-upsert.html │ │ │ │ │ ├── delete-all.html │ │ │ │ │ ├── delete-ignore-where.html │ │ │ │ │ ├── delete-returning.html │ │ │ │ │ ├── delete-where.html │ │ │ │ │ ├── delete.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── insert-ignore.html │ │ │ │ │ ├── insert-returning.html │ │ │ │ │ ├── insert.html │ │ │ │ │ ├── merge-from.html │ │ │ │ │ ├── replace.html │ │ │ │ │ ├── update-returning.html │ │ │ │ │ ├── update.html │ │ │ │ │ ├── upsert-returning.html │ │ │ │ │ └── upsert.html │ │ │ │ ├── -statement-context/ │ │ │ │ │ ├── -statement-context.html │ │ │ │ │ ├── args.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── sql.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -statement-group/ │ │ │ │ │ ├── -d-d-l/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -d-m-l/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -statement-interceptor/ │ │ │ │ │ ├── after-commit.html │ │ │ │ │ ├── after-execution.html │ │ │ │ │ ├── after-rollback.html │ │ │ │ │ ├── after-statement-prepared.html │ │ │ │ │ ├── before-commit.html │ │ │ │ │ ├── before-execution.html │ │ │ │ │ ├── before-rollback.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── keep-user-data-in-transaction-store-on-commit.html │ │ │ │ ├── -statement-result/ │ │ │ │ │ ├── -count/ │ │ │ │ │ │ ├── -count.html │ │ │ │ │ │ ├── count.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -object/ │ │ │ │ │ │ ├── -object.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── result-set.html │ │ │ │ │ └── index.html │ │ │ │ ├── -statement-type/ │ │ │ │ │ ├── -a-l-t-e-r/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -c-r-e-a-t-e/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -d-e-l-e-t-e/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -d-r-o-p/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -e-x-e-c/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -g-r-a-n-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -i-n-s-e-r-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -m-e-r-g-e/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -m-u-l-t-i/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -o-t-h-e-r/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -p-r-a-g-m-a/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -s-e-l-e-c-t/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -s-h-o-w/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -t-r-u-n-c-a-t-e/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -u-p-d-a-t-e/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -update-builder/ │ │ │ │ │ ├── -update-builder.html │ │ │ │ │ ├── contains.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── set.html │ │ │ │ │ └── update.html │ │ │ │ ├── -update-statement/ │ │ │ │ │ ├── -update-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── first-data-set.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── targets-set.html │ │ │ │ │ └── where.html │ │ │ │ ├── -upsert-builder/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── get-function-provider.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── insert-value.html │ │ │ │ │ └── store-update-values.html │ │ │ │ ├── -upsert-statement/ │ │ │ │ │ ├── -upsert-statement.html │ │ │ │ │ ├── arguments.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keys.html │ │ │ │ │ ├── on-update-exclude.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ └── where.html │ │ │ │ ├── build-statement.html │ │ │ │ ├── expand-args.html │ │ │ │ ├── index.html │ │ │ │ └── insert-value.html │ │ │ ├── org.jetbrains.exposed.v1.core.statements.api/ │ │ │ │ ├── -exposed-blob/ │ │ │ │ │ ├── -exposed-blob.html │ │ │ │ │ ├── bytes.html │ │ │ │ │ ├── equals.html │ │ │ │ │ ├── hash-code.html │ │ │ │ │ ├── hex-string.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── input-stream.html │ │ │ │ ├── -exposed-database-metadata/ │ │ │ │ │ ├── -exposed-database-metadata.html │ │ │ │ │ ├── are-equivalent-column-types.html │ │ │ │ │ ├── clean-cache.html │ │ │ │ │ ├── database.html │ │ │ │ │ ├── identifier-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── reset-current-scheme.html │ │ │ │ ├── -exposed-savepoint/ │ │ │ │ │ ├── -exposed-savepoint.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── name.html │ │ │ │ ├── -identifier-manager-api/ │ │ │ │ │ ├── -identifier-manager-api.html │ │ │ │ │ ├── cut-if-necessary-and-quote.html │ │ │ │ │ ├── in-proper-case.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-dot-prefixed-and-unquoted.html │ │ │ │ │ ├── keywords.html │ │ │ │ │ ├── need-quotes.html │ │ │ │ │ ├── quote-identifier-when-wrong-case-or-necessary.html │ │ │ │ │ ├── quote-if-necessary.html │ │ │ │ │ ├── quote-string.html │ │ │ │ │ └── should-quote-identifier.html │ │ │ │ ├── -prepared-statement-api/ │ │ │ │ │ ├── fill-parameters.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── set-array.html │ │ │ │ │ ├── set-input-stream.html │ │ │ │ │ ├── set-null.html │ │ │ │ │ └── set.html │ │ │ │ ├── -result-api/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── map-rows.html │ │ │ │ ├── -row-api/ │ │ │ │ │ ├── get-object.html │ │ │ │ │ ├── get-string.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.transactions/ │ │ │ │ ├── -transaction-interface/ │ │ │ │ │ ├── db.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── outer-transaction.html │ │ │ │ │ ├── read-only.html │ │ │ │ │ └── transaction-manager.html │ │ │ │ ├── -transaction-manager-api/ │ │ │ │ │ ├── default-max-attempts.html │ │ │ │ │ ├── default-max-retry-delay.html │ │ │ │ │ ├── default-min-retry-delay.html │ │ │ │ │ ├── default-read-only.html │ │ │ │ │ └── index.html │ │ │ │ ├── -transaction-store/ │ │ │ │ │ ├── -transaction-store.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── init.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── index.html │ │ │ │ ├── nullable-transaction-scope.html │ │ │ │ └── transaction-scope.html │ │ │ ├── org.jetbrains.exposed.v1.core.transactions.suspend/ │ │ │ │ ├── -transaction-context-holder/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── transaction.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.utils/ │ │ │ │ ├── -cache-with-default/ │ │ │ │ │ ├── get.html │ │ │ │ │ └── index.html │ │ │ │ ├── -cache-with-suspendable-default/ │ │ │ │ │ ├── get.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.core.vendors/ │ │ │ │ ├── -a-n-s-i_-s-q-l_2003_-k-e-y-w-o-r-d-s.html │ │ │ │ ├── -column-metadata/ │ │ │ │ │ ├── -column-metadata.html │ │ │ │ │ ├── auto-increment.html │ │ │ │ │ ├── default-db-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jdbc-type.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── nullable.html │ │ │ │ │ ├── scale.html │ │ │ │ │ ├── size.html │ │ │ │ │ └── sql-type.html │ │ │ │ ├── -data-type-provider/ │ │ │ │ │ ├── -data-type-provider.html │ │ │ │ │ ├── binary-type.html │ │ │ │ │ ├── blob-type.html │ │ │ │ │ ├── boolean-from-string-to-boolean.html │ │ │ │ │ ├── boolean-to-statement-string.html │ │ │ │ │ ├── boolean-type.html │ │ │ │ │ ├── byte-type.html │ │ │ │ │ ├── date-time-type.html │ │ │ │ │ ├── date-type.html │ │ │ │ │ ├── double-type.html │ │ │ │ │ ├── float-type.html │ │ │ │ │ ├── hex-to-db.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── integer-autoinc-type.html │ │ │ │ │ ├── integer-type.html │ │ │ │ │ ├── json-b-type.html │ │ │ │ │ ├── json-type.html │ │ │ │ │ ├── large-text-type.html │ │ │ │ │ ├── long-autoinc-type.html │ │ │ │ │ ├── long-type.html │ │ │ │ │ ├── medium-text-type.html │ │ │ │ │ ├── precess-order-by-clause.html │ │ │ │ │ ├── process-for-default-value.html │ │ │ │ │ ├── short-type.html │ │ │ │ │ ├── text-type.html │ │ │ │ │ ├── time-type.html │ │ │ │ │ ├── timestamp-type.html │ │ │ │ │ ├── timestamp-with-time-zone-type.html │ │ │ │ │ ├── ubyte-type.html │ │ │ │ │ ├── uinteger-autoinc-type.html │ │ │ │ │ ├── uinteger-type.html │ │ │ │ │ ├── ulong-autoinc-type.html │ │ │ │ │ ├── ulong-type.html │ │ │ │ │ ├── ushort-type.html │ │ │ │ │ ├── uuid-to-d-b.html │ │ │ │ │ ├── uuid-type.html │ │ │ │ │ └── varchar-type.html │ │ │ │ ├── -database-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── add-primary-key.html │ │ │ │ │ ├── are-equivalent-column-types.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── create-schema.html │ │ │ │ │ ├── data-type-provider.html │ │ │ │ │ ├── default-reference-option.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── drop-schema.html │ │ │ │ │ ├── function-provider.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── like-pattern-special-chars.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── modify-column.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── needs-quotes-when-symbols-in-names.html │ │ │ │ │ ├── needs-sequence-to-auto-inc.html │ │ │ │ │ ├── requires-auto-commit-on-create-drop.html │ │ │ │ │ ├── sequence-max-value.html │ │ │ │ │ ├── set-schema.html │ │ │ │ │ ├── supports-column-type-change.html │ │ │ │ │ ├── supports-create-schema.html │ │ │ │ │ ├── supports-create-sequence.html │ │ │ │ │ ├── supports-dual-table-concept.html │ │ │ │ │ ├── supports-if-not-exists.html │ │ │ │ │ ├── supports-multiple-generated-keys.html │ │ │ │ │ ├── supports-on-update.html │ │ │ │ │ ├── supports-only-identifiers-in-generated-keys.html │ │ │ │ │ ├── supports-order-by-nulls-first-last.html │ │ │ │ │ ├── supports-restrict-reference-option.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── supports-sequence-as-generated-keys.html │ │ │ │ │ ├── supports-set-default-reference-option.html │ │ │ │ │ ├── supports-subquery-unions.html │ │ │ │ │ ├── supports-ternary-affected-row-values.html │ │ │ │ │ └── supports-window-frame-groups-mode.html │ │ │ │ ├── -for-update-option/ │ │ │ │ │ ├── -for-update/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -for-update-base/ │ │ │ │ │ │ ├── -for-update-base.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── query-suffix.html │ │ │ │ │ ├── -for-update-or-share-mode/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── statement.html │ │ │ │ │ ├── -maria-d-b/ │ │ │ │ │ │ ├── -lock-in-share-mode/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -my-s-q-l/ │ │ │ │ │ │ ├── -for-share/ │ │ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -for-share.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -for-update/ │ │ │ │ │ │ │ ├── -for-update.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -lock-in-share-mode/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -m-o-d-e/ │ │ │ │ │ │ │ ├── -n-o_-w-a-i-t/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -s-k-i-p_-l-o-c-k-e-d/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── statement.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -oracle/ │ │ │ │ │ │ ├── -for-update-no-wait/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -for-update-wait/ │ │ │ │ │ │ │ ├── -for-update-wait.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -postgre-s-q-l/ │ │ │ │ │ │ ├── -for-key-share/ │ │ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -for-key-share.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -for-no-key-update/ │ │ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -for-no-key-update.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -for-share/ │ │ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -for-share.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -for-update/ │ │ │ │ │ │ │ ├── -for-update.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -m-o-d-e/ │ │ │ │ │ │ │ ├── -n-o_-w-a-i-t/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── -s-k-i-p_-l-o-c-k-e-d/ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── statement.html │ │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ │ └── values.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── query-suffix.html │ │ │ │ ├── -function-provider/ │ │ │ │ │ ├── -d-e-f-a-u-l-t_-v-a-l-u-e_-e-x-p-r-e-s-s-i-o-n.html │ │ │ │ │ ├── -function-provider.html │ │ │ │ │ ├── -match-mode/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mode.html │ │ │ │ │ ├── array-slice.html │ │ │ │ │ ├── cast.html │ │ │ │ │ ├── char-length.html │ │ │ │ │ ├── concat.html │ │ │ │ │ ├── date.html │ │ │ │ │ ├── day.html │ │ │ │ │ ├── delete.html │ │ │ │ │ ├── explain.html │ │ │ │ │ ├── group-concat.html │ │ │ │ │ ├── hour.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── insert-value.html │ │ │ │ │ ├── insert.html │ │ │ │ │ ├── json-cast.html │ │ │ │ │ ├── json-contains.html │ │ │ │ │ ├── json-exists.html │ │ │ │ │ ├── json-extract.html │ │ │ │ │ ├── locate.html │ │ │ │ │ ├── match.html │ │ │ │ │ ├── merge-select.html │ │ │ │ │ ├── merge.html │ │ │ │ │ ├── minute.html │ │ │ │ │ ├── month.html │ │ │ │ │ ├── next-val.html │ │ │ │ │ ├── query-limit-and-offset.html │ │ │ │ │ ├── random.html │ │ │ │ │ ├── regexp.html │ │ │ │ │ ├── replace.html │ │ │ │ │ ├── returning.html │ │ │ │ │ ├── second.html │ │ │ │ │ ├── std-dev-pop.html │ │ │ │ │ ├── std-dev-samp.html │ │ │ │ │ ├── substring.html │ │ │ │ │ ├── time.html │ │ │ │ │ ├── update.html │ │ │ │ │ ├── upsert.html │ │ │ │ │ ├── var-pop.html │ │ │ │ │ ├── var-samp.html │ │ │ │ │ └── year.html │ │ │ │ ├── -h2-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -h2-compatibility-mode/ │ │ │ │ │ │ ├── -maria-d-b/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -my-s-q-l/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -oracle/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -postgre-s-q-l/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── -s-q-l-server/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ └── values.html │ │ │ │ │ ├── -h2-dialect.html │ │ │ │ │ ├── -h2-major-version/ │ │ │ │ │ │ ├── -two/ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── entries.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── value-of.html │ │ │ │ │ │ └── values.html │ │ │ │ │ ├── are-equivalent-column-types.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── data-type-provider.html │ │ │ │ │ ├── default-reference-option.html │ │ │ │ │ ├── delegated-dialect-name-provider.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── function-provider.html │ │ │ │ │ ├── h2-mode.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── is-second-version.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── major-version.html │ │ │ │ │ ├── modify-column.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── needs-sequence-to-auto-inc.html │ │ │ │ │ ├── original-data-type-provider.html │ │ │ │ │ ├── original-function-provider.html │ │ │ │ │ ├── supports-column-type-change.html │ │ │ │ │ ├── supports-create-schema.html │ │ │ │ │ ├── supports-create-sequence.html │ │ │ │ │ ├── supports-dual-table-concept.html │ │ │ │ │ ├── supports-if-not-exists.html │ │ │ │ │ ├── supports-multiple-generated-keys.html │ │ │ │ │ ├── supports-only-identifiers-in-generated-keys.html │ │ │ │ │ ├── supports-order-by-nulls-first-last.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── supports-sequence-as-generated-keys.html │ │ │ │ │ ├── supports-subquery-unions.html │ │ │ │ │ ├── supports-ternary-affected-row-values.html │ │ │ │ │ ├── supports-window-frame-groups-mode.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -maria-d-b-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -maria-d-b-dialect.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── data-type-provider.html │ │ │ │ │ ├── function-provider.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── is-fraction-date-time-supported.html │ │ │ │ │ ├── is-time-zone-offset-supported.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── sequence-max-value.html │ │ │ │ │ ├── supports-create-sequence.html │ │ │ │ │ ├── supports-only-identifiers-in-generated-keys.html │ │ │ │ │ ├── supports-sequence-as-generated-keys.html │ │ │ │ │ └── supports-set-default-reference-option.html │ │ │ │ ├── -mysql-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -mysql-dialect.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── create-schema.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── drop-schema.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── is-fraction-date-time-supported.html │ │ │ │ │ ├── is-time-zone-offset-supported.html │ │ │ │ │ ├── set-schema.html │ │ │ │ │ ├── supports-create-sequence.html │ │ │ │ │ ├── supports-order-by-nulls-first-last.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── supports-set-default-reference-option.html │ │ │ │ │ ├── supports-subquery-unions.html │ │ │ │ │ └── supports-ternary-affected-row-values.html │ │ │ │ ├── -oracle-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -oracle-dialect.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── create-schema.html │ │ │ │ │ ├── default-reference-option.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── drop-schema.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── modify-column.html │ │ │ │ │ ├── needs-quotes-when-symbols-in-names.html │ │ │ │ │ ├── needs-sequence-to-auto-inc.html │ │ │ │ │ ├── set-schema.html │ │ │ │ │ ├── supports-dual-table-concept.html │ │ │ │ │ ├── supports-if-not-exists.html │ │ │ │ │ ├── supports-multiple-generated-keys.html │ │ │ │ │ ├── supports-on-update.html │ │ │ │ │ ├── supports-only-identifiers-in-generated-keys.html │ │ │ │ │ ├── supports-order-by-nulls-first-last.html │ │ │ │ │ ├── supports-restrict-reference-option.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ └── supports-set-default-reference-option.html │ │ │ │ ├── -postgre-s-q-l-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -postgre-s-q-l-dialect.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── modify-column.html │ │ │ │ │ ├── name.html │ │ │ │ │ ├── requires-auto-commit-on-create-drop.html │ │ │ │ │ ├── set-schema.html │ │ │ │ │ ├── supports-order-by-nulls-first-last.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── supports-subquery-unions.html │ │ │ │ │ └── supports-window-frame-groups-mode.html │ │ │ │ ├── -postgre-s-q-l-n-g-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -postgre-s-q-l-n-g-dialect.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── requires-auto-commit-on-create-drop.html │ │ │ │ ├── -primary-key-metadata/ │ │ │ │ │ ├── -primary-key-metadata.html │ │ │ │ │ ├── column-names.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── name.html │ │ │ │ ├── -s-q-l-server-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -s-q-l-server-dialect.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── create-schema.html │ │ │ │ │ ├── default-reference-option.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── drop-schema.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── like-pattern-special-chars.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── modify-column.html │ │ │ │ │ ├── needs-quotes-when-symbols-in-names.html │ │ │ │ │ ├── set-schema.html │ │ │ │ │ ├── supports-if-not-exists.html │ │ │ │ │ ├── supports-only-identifiers-in-generated-keys.html │ │ │ │ │ ├── supports-restrict-reference-option.html │ │ │ │ │ └── supports-sequence-as-generated-keys.html │ │ │ │ ├── -s-q-lite-dialect/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -s-q-lite-dialect.html │ │ │ │ │ ├── add-primary-key.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-allowed-as-column-default.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── modify-column.html │ │ │ │ │ ├── supports-create-schema.html │ │ │ │ │ ├── supports-create-sequence.html │ │ │ │ │ ├── supports-multiple-generated-keys.html │ │ │ │ │ └── supports-window-frame-groups-mode.html │ │ │ │ ├── -schema-metadata/ │ │ │ │ │ ├── -schema-metadata.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── schema-name.html │ │ │ │ │ └── table-names.html │ │ │ │ ├── -v-e-n-d-o-r-s_-k-e-y-w-o-r-d-s.html │ │ │ │ ├── -vendor-dialect/ │ │ │ │ │ ├── -dialect-name-provider/ │ │ │ │ │ │ ├── -dialect-name-provider.html │ │ │ │ │ │ ├── dialect-name.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -vendor-dialect.html │ │ │ │ │ ├── add-primary-key.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── data-type-provider.html │ │ │ │ │ ├── drop-index.html │ │ │ │ │ ├── filter-condition.html │ │ │ │ │ ├── function-provider.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modify-column.html │ │ │ │ │ ├── name.html │ │ │ │ │ └── supports-multiple-generated-keys.html │ │ │ │ ├── current-dialect.html │ │ │ │ ├── h2-mode.html │ │ │ │ └── index.html │ │ │ └── org.jetbrains.exposed.v1.exceptions/ │ │ │ ├── -duplicate-column-exception/ │ │ │ │ ├── -duplicate-column-exception.html │ │ │ │ └── index.html │ │ │ ├── -exposed-s-q-l-exception/ │ │ │ │ ├── -exposed-s-q-l-exception.html │ │ │ │ ├── caused-by-queries.html │ │ │ │ ├── contexts.html │ │ │ │ ├── error-code.html │ │ │ │ ├── get-error-code.html │ │ │ │ ├── get-s-q-l-state.html │ │ │ │ ├── index.html │ │ │ │ ├── sql-state.html │ │ │ │ └── to-string.html │ │ │ ├── -long-query-exception/ │ │ │ │ ├── -long-query-exception.html │ │ │ │ └── index.html │ │ │ ├── -unsupported-by-dialect-exception/ │ │ │ │ ├── -unsupported-by-dialect-exception.html │ │ │ │ ├── dialect.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── exposed-crypt/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.crypt/ │ │ │ ├── -algorithms/ │ │ │ │ ├── -a-e-s_256_-p-b-e_-c-b-c.html │ │ │ │ ├── -a-e-s_256_-p-b-e_-g-c-m.html │ │ │ │ ├── -b-l-o-w_-f-i-s-h.html │ │ │ │ ├── -t-r-i-p-l-e_-d-e-s.html │ │ │ │ └── index.html │ │ │ ├── -byte-array-encryption-transformer/ │ │ │ │ ├── -byte-array-encryption-transformer.html │ │ │ │ ├── index.html │ │ │ │ ├── unwrap.html │ │ │ │ └── wrap.html │ │ │ ├── -encrypted-binary-column-type/ │ │ │ │ ├── -encrypted-binary-column-type.html │ │ │ │ └── index.html │ │ │ ├── -encrypted-var-char-column-type/ │ │ │ │ ├── -encrypted-var-char-column-type.html │ │ │ │ └── index.html │ │ │ ├── -encryptor/ │ │ │ │ ├── -encryptor.html │ │ │ │ ├── decrypt-fn.html │ │ │ │ ├── decrypt.html │ │ │ │ ├── encrypt-fn.html │ │ │ │ ├── encrypt.html │ │ │ │ ├── index.html │ │ │ │ ├── max-col-length-fn.html │ │ │ │ └── max-col-length.html │ │ │ ├── -string-encryption-transformer/ │ │ │ │ ├── -string-encryption-transformer.html │ │ │ │ ├── index.html │ │ │ │ ├── unwrap.html │ │ │ │ └── wrap.html │ │ │ ├── encrypted-binary.html │ │ │ ├── encrypted-varchar.html │ │ │ └── index.html │ │ ├── exposed-dao/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── org.jetbrains.exposed.v1.dao/ │ │ │ │ ├── -composite-entity/ │ │ │ │ │ ├── -composite-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -composite-entity-class/ │ │ │ │ │ ├── -composite-entity-class.html │ │ │ │ │ └── index.html │ │ │ │ ├── -dao-entity-i-d/ │ │ │ │ │ ├── -dao-entity-i-d.html │ │ │ │ │ └── index.html │ │ │ │ ├── -dao-entity-i-d-factory/ │ │ │ │ │ ├── -dao-entity-i-d-factory.html │ │ │ │ │ ├── create-entity-i-d.html │ │ │ │ │ └── index.html │ │ │ │ ├── -entity/ │ │ │ │ │ ├── -entity.html │ │ │ │ │ ├── _read-values.html │ │ │ │ │ ├── db.html │ │ │ │ │ ├── delete.html │ │ │ │ │ ├── flush.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── id.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── klass.html │ │ │ │ │ ├── lookup-in-read-values.html │ │ │ │ │ ├── lookup.html │ │ │ │ │ ├── read-values.html │ │ │ │ │ ├── refresh.html │ │ │ │ │ ├── set-value.html │ │ │ │ │ ├── store-written-values.html │ │ │ │ │ ├── via.html │ │ │ │ │ └── write-values.html │ │ │ │ ├── -entity-batch-update/ │ │ │ │ │ ├── -entity-batch-update.html │ │ │ │ │ ├── add-batch.html │ │ │ │ │ ├── execute.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── set.html │ │ │ │ ├── -entity-cache/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── invalidate-global-caches.html │ │ │ │ │ ├── -entity-cache.html │ │ │ │ │ ├── clear-referrers-cache.html │ │ │ │ │ ├── clear.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── find-all.html │ │ │ │ │ ├── find.html │ │ │ │ │ ├── flush.html │ │ │ │ │ ├── get-or-put-referrers.html │ │ │ │ │ ├── get-referrers.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-entities-to-store.html │ │ │ │ │ ├── remove.html │ │ │ │ │ ├── schedule-insert.html │ │ │ │ │ ├── schedule-update.html │ │ │ │ │ └── store.html │ │ │ │ ├── -entity-change/ │ │ │ │ │ ├── -entity-change.html │ │ │ │ │ ├── change-type.html │ │ │ │ │ ├── entity-class.html │ │ │ │ │ ├── entity-id.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── transaction-id.html │ │ │ │ ├── -entity-change-type/ │ │ │ │ │ ├── -created/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -removed/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -updated/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── entries.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── value-of.html │ │ │ │ │ └── values.html │ │ │ │ ├── -entity-class/ │ │ │ │ │ ├── -entity-class.html │ │ │ │ │ ├── all.html │ │ │ │ │ ├── back-referenced-on.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── depends-on-columns.html │ │ │ │ │ ├── depends-on-tables.html │ │ │ │ │ ├── find-by-id-and-update.html │ │ │ │ │ ├── find-by-id.html │ │ │ │ │ ├── find-single-by-and-update.html │ │ │ │ │ ├── find-with-cache-condition.html │ │ │ │ │ ├── find.html │ │ │ │ │ ├── for-entity-ids.html │ │ │ │ │ ├── for-ids.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-assignable-to.html │ │ │ │ │ ├── memoized-transform.html │ │ │ │ │ ├── new.html │ │ │ │ │ ├── optional-back-referenced-on.html │ │ │ │ │ ├── optional-referenced-on.html │ │ │ │ │ ├── optional-referrers-on.html │ │ │ │ │ ├── referenced-on.html │ │ │ │ │ ├── referrers-on.html │ │ │ │ │ ├── reload.html │ │ │ │ │ ├── remove-from-cache.html │ │ │ │ │ ├── search-query.html │ │ │ │ │ ├── table.html │ │ │ │ │ ├── test-cache.html │ │ │ │ │ ├── transform.html │ │ │ │ │ ├── view.html │ │ │ │ │ ├── warm-up-linked-references.html │ │ │ │ │ ├── warm-up-opt-references.html │ │ │ │ │ ├── warm-up-references.html │ │ │ │ │ ├── wrap-row.html │ │ │ │ │ ├── wrap-rows.html │ │ │ │ │ └── wrap.html │ │ │ │ ├── -entity-field-with-transform/ │ │ │ │ │ ├── -entity-field-with-transform.html │ │ │ │ │ ├── column.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── unwrap.html │ │ │ │ │ └── wrap.html │ │ │ │ ├── -entity-hook/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── subscribe.html │ │ │ │ │ └── unsubscribe.html │ │ │ │ ├── -entity-lifecycle-interceptor/ │ │ │ │ │ ├── -entity-lifecycle-interceptor.html │ │ │ │ │ ├── after-execution.html │ │ │ │ │ ├── before-commit.html │ │ │ │ │ ├── before-execution.html │ │ │ │ │ ├── before-rollback.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── keep-user-data-in-transaction-store-on-commit.html │ │ │ │ ├── -immutable-cached-entity-class/ │ │ │ │ │ ├── -immutable-cached-entity-class.html │ │ │ │ │ ├── all.html │ │ │ │ │ ├── expire-cache.html │ │ │ │ │ ├── force-update-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -immutable-entity-class/ │ │ │ │ │ ├── -immutable-entity-class.html │ │ │ │ │ ├── force-update-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -inner-table-link/ │ │ │ │ │ ├── -inner-table-link.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ ├── set-value.html │ │ │ │ │ ├── source-column.html │ │ │ │ │ ├── table.html │ │ │ │ │ ├── target-column.html │ │ │ │ │ └── target.html │ │ │ │ ├── -int-entity/ │ │ │ │ │ ├── -int-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -int-entity-class/ │ │ │ │ │ ├── -int-entity-class.html │ │ │ │ │ └── index.html │ │ │ │ ├── -long-entity/ │ │ │ │ │ ├── -long-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -long-entity-class/ │ │ │ │ │ ├── -long-entity-class.html │ │ │ │ │ └── index.html │ │ │ │ ├── -optional-back-reference/ │ │ │ │ │ ├── -optional-back-reference.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ └── index.html │ │ │ │ ├── -optional-reference/ │ │ │ │ │ ├── -optional-reference.html │ │ │ │ │ ├── all-references.html │ │ │ │ │ ├── factory.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── reference.html │ │ │ │ ├── -reference/ │ │ │ │ │ ├── -reference.html │ │ │ │ │ ├── all-references.html │ │ │ │ │ ├── factory.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── reference.html │ │ │ │ ├── -referrers/ │ │ │ │ │ ├── -referrers.html │ │ │ │ │ ├── all-references.html │ │ │ │ │ ├── cache.html │ │ │ │ │ ├── factory.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ └── reference.html │ │ │ │ ├── -u-int-entity/ │ │ │ │ │ ├── -u-int-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -u-int-entity-class/ │ │ │ │ │ ├── -u-int-entity-class.html │ │ │ │ │ └── index.html │ │ │ │ ├── -u-long-entity/ │ │ │ │ │ ├── -u-long-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -u-long-entity-class/ │ │ │ │ │ ├── -u-long-entity-class.html │ │ │ │ │ └── index.html │ │ │ │ ├── -uuid-entity/ │ │ │ │ │ ├── -uuid-entity.html │ │ │ │ │ └── index.html │ │ │ │ ├── -uuid-entity-class/ │ │ │ │ │ ├── -uuid-entity-class.html │ │ │ │ │ └── index.html │ │ │ │ ├── -view/ │ │ │ │ │ ├── -view.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── factory.html │ │ │ │ │ ├── for-update.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── not-for-update.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── op.html │ │ │ │ │ └── order-by.html │ │ │ │ ├── alert-subscribers.html │ │ │ │ ├── entity-cache.html │ │ │ │ ├── flush-cache.html │ │ │ │ ├── index.html │ │ │ │ ├── load.html │ │ │ │ ├── register-change.html │ │ │ │ ├── registered-changes.html │ │ │ │ ├── to-entity.html │ │ │ │ ├── with-hook.html │ │ │ │ └── with.html │ │ │ ├── org.jetbrains.exposed.v1.dao.exceptions/ │ │ │ │ ├── -entity-not-found-exception/ │ │ │ │ │ ├── -entity-not-found-exception.html │ │ │ │ │ ├── entity.html │ │ │ │ │ ├── id.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── org.jetbrains.exposed.v1.dao.java/ │ │ │ ├── -u-u-i-d-entity/ │ │ │ │ ├── -u-u-i-d-entity.html │ │ │ │ └── index.html │ │ │ ├── -u-u-i-d-entity-class/ │ │ │ │ ├── -u-u-i-d-entity-class.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── exposed-java-time/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.javatime/ │ │ │ ├── -current-date/ │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -current-date-time/ │ │ │ │ └── index.html │ │ │ ├── -current-timestamp/ │ │ │ │ └── index.html │ │ │ ├── -current-timestamp-base/ │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -current-timestamp-with-time-zone/ │ │ │ │ └── index.html │ │ │ ├── -custom-date-function.html │ │ │ ├── -custom-date-time-function.html │ │ │ ├── -custom-duration-function.html │ │ │ ├── -custom-time-function.html │ │ │ ├── -custom-time-stamp-function.html │ │ │ ├── -custom-timestamp-with-time-zone-function.html │ │ │ ├── -date/ │ │ │ │ ├── -date.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -day/ │ │ │ │ ├── -day.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -hour/ │ │ │ │ ├── -hour.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -java-duration-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -java-duration-column-type.html │ │ │ │ ├── from-duration.html │ │ │ │ ├── index.html │ │ │ │ └── to-duration.html │ │ │ ├── -java-instant-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -java-instant-column-type.html │ │ │ │ ├── from-instant.html │ │ │ │ ├── index.html │ │ │ │ └── to-instant.html │ │ │ ├── -java-local-date-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -java-local-date-column-type.html │ │ │ │ ├── from-local-date.html │ │ │ │ ├── index.html │ │ │ │ └── to-local-date.html │ │ │ ├── -java-local-date-time-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -java-local-date-time-column-type.html │ │ │ │ ├── from-local-date-time.html │ │ │ │ ├── index.html │ │ │ │ └── to-local-date-time.html │ │ │ ├── -java-local-time-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -java-local-time-column-type.html │ │ │ │ ├── from-local-time.html │ │ │ │ ├── index.html │ │ │ │ └── to-local-time.html │ │ │ ├── -java-offset-date-time-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -java-offset-date-time-column-type.html │ │ │ │ ├── from-offset-date-time.html │ │ │ │ ├── index.html │ │ │ │ └── to-offset-date-time.html │ │ │ ├── -minute/ │ │ │ │ ├── -minute.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -month/ │ │ │ │ ├── -month.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -second/ │ │ │ │ ├── -second.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -time/ │ │ │ │ ├── -time.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -year/ │ │ │ │ ├── -year.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── date-literal.html │ │ │ ├── date-param.html │ │ │ ├── date-time-literal.html │ │ │ ├── date-time-param.html │ │ │ ├── date.html │ │ │ ├── datetime.html │ │ │ ├── day.html │ │ │ ├── duration-literal.html │ │ │ ├── duration-param.html │ │ │ ├── duration.html │ │ │ ├── hour.html │ │ │ ├── index.html │ │ │ ├── minute.html │ │ │ ├── month.html │ │ │ ├── second.html │ │ │ ├── time-literal.html │ │ │ ├── time-param.html │ │ │ ├── time.html │ │ │ ├── timestamp-literal.html │ │ │ ├── timestamp-param.html │ │ │ ├── timestamp-with-time-zone-literal.html │ │ │ ├── timestamp-with-time-zone-param.html │ │ │ ├── timestamp-with-time-zone.html │ │ │ ├── timestamp.html │ │ │ └── year.html │ │ ├── exposed-jdbc/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── org.jetbrains.exposed.v1.jdbc/ │ │ │ │ ├── -database/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ ├── get-default-isolation-level.html │ │ │ │ │ │ ├── get-dialect-name.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── register-dialect-metadata.html │ │ │ │ │ │ └── register-jdbc-driver.html │ │ │ │ │ ├── connector.html │ │ │ │ │ ├── dialect-metadata.html │ │ │ │ │ ├── dialect-mode.html │ │ │ │ │ ├── dialect.html │ │ │ │ │ ├── full-version.html │ │ │ │ │ ├── identifier-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── supports-alter-table-with-add-column.html │ │ │ │ │ ├── supports-alter-table-with-drop-column.html │ │ │ │ │ ├── supports-multiple-result-sets.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── url.html │ │ │ │ │ ├── vendor.html │ │ │ │ │ └── version.html │ │ │ │ ├── -database-connection-auto-registration/ │ │ │ │ │ └── index.html │ │ │ │ ├── -empty-sized-iterable/ │ │ │ │ │ ├── -empty-sized-iterable.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── has-next.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── next.html │ │ │ │ │ ├── offset.html │ │ │ │ │ └── order-by.html │ │ │ │ ├── -except/ │ │ │ │ │ ├── -except.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── operation-name.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── -explain-blocking-executable/ │ │ │ │ │ ├── -explain-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -exposed-connection-impl/ │ │ │ │ │ ├── -exposed-connection-impl.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── invoke.html │ │ │ │ ├── -intersect/ │ │ │ │ │ ├── -intersect.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── -jdbc-transaction/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── global-interceptors.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -jdbc-transaction.html │ │ │ │ │ ├── add-logger.html │ │ │ │ │ ├── close-executed-statements.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── current-statement.html │ │ │ │ │ ├── db.html │ │ │ │ │ ├── default-logger.html │ │ │ │ │ ├── exec-in-batch.html │ │ │ │ │ ├── exec-query.html │ │ │ │ │ ├── exec.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-attempts.html │ │ │ │ │ ├── max-retry-delay.html │ │ │ │ │ ├── min-retry-delay.html │ │ │ │ │ ├── register-interceptor.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ ├── transaction-manager.html │ │ │ │ │ └── unregister-interceptor.html │ │ │ │ ├── -lazy-sized-collection/ │ │ │ │ │ ├── -lazy-sized-collection.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── for-update.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-loaded.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── not-for-update.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ └── wrapper.html │ │ │ │ ├── -lazy-sized-iterable/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── loaded-result.html │ │ │ │ ├── -query/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -query.html │ │ │ │ │ ├── adjust-column-set.html │ │ │ │ │ ├── adjust-select.html │ │ │ │ │ ├── adjust-where.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── fetch-batched-results.html │ │ │ │ │ ├── for-update.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── not-for-update.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ ├── set.html │ │ │ │ │ ├── statement.html │ │ │ │ │ ├── where.html │ │ │ │ │ └── with-distinct-on.html │ │ │ │ ├── -schema-utils/ │ │ │ │ │ ├── add-missing-columns-statements.html │ │ │ │ │ ├── check-cycle.html │ │ │ │ │ ├── check-excessive-foreign-key-constraints.html │ │ │ │ │ ├── check-excessive-indices.html │ │ │ │ │ ├── check-mapping-consistence.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── create-f-key.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── create-missing-tables-and-columns.html │ │ │ │ │ ├── create-schema.html │ │ │ │ │ ├── create-sequence.html │ │ │ │ │ ├── create-statements.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-schema.html │ │ │ │ │ ├── drop-sequence.html │ │ │ │ │ ├── drop.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── list-tables-in-all-schemas.html │ │ │ │ │ ├── list-tables.html │ │ │ │ │ ├── set-schema.html │ │ │ │ │ ├── sort-tables-by-references.html │ │ │ │ │ ├── statements-required-to-actualize-scheme.html │ │ │ │ │ └── with-data-base-lock.html │ │ │ │ ├── -set-operation/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── first-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── operation-name.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── second-statement.html │ │ │ │ │ ├── set.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -sized-collection/ │ │ │ │ │ ├── -sized-collection.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── offset.html │ │ │ │ │ └── order-by.html │ │ │ │ ├── -sized-iterable/ │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── for-update.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── not-for-update.html │ │ │ │ │ ├── offset.html │ │ │ │ │ └── order-by.html │ │ │ │ ├── -union/ │ │ │ │ │ ├── -union.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── -union-all/ │ │ │ │ │ ├── -union-all.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── and-having.html │ │ │ │ ├── and-where.html │ │ │ │ ├── batch-insert.html │ │ │ │ ├── batch-replace.html │ │ │ │ ├── batch-upsert.html │ │ │ │ ├── delete-all.html │ │ │ │ ├── delete-ignore-where.html │ │ │ │ ├── delete-returning.html │ │ │ │ ├── delete-where.html │ │ │ │ ├── delete.html │ │ │ │ ├── empty-sized.html │ │ │ │ ├── except.html │ │ │ │ ├── exists.html │ │ │ │ ├── explain.html │ │ │ │ ├── index.html │ │ │ │ ├── insert-and-get-id.html │ │ │ │ ├── insert-ignore-and-get-id.html │ │ │ │ ├── insert-ignore.html │ │ │ │ ├── insert-returning.html │ │ │ │ ├── insert.html │ │ │ │ ├── intersect.html │ │ │ │ ├── map-lazy.html │ │ │ │ ├── merge-from.html │ │ │ │ ├── name.html │ │ │ │ ├── or-having.html │ │ │ │ ├── or-where.html │ │ │ │ ├── replace.html │ │ │ │ ├── select-all.html │ │ │ │ ├── select.html │ │ │ │ ├── union-all.html │ │ │ │ ├── union.html │ │ │ │ ├── update-returning.html │ │ │ │ ├── update.html │ │ │ │ ├── upsert-returning.html │ │ │ │ └── upsert.html │ │ │ ├── org.jetbrains.exposed.v1.jdbc.statements/ │ │ │ │ ├── -batch-insert-blocking-executable/ │ │ │ │ │ ├── -batch-insert-blocking-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-always-batch.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -batch-update-blocking-executable/ │ │ │ │ │ ├── -batch-update-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -batch-upsert-blocking-executable/ │ │ │ │ │ ├── -batch-upsert-blocking-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -blocking-executable/ │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── execute.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-always-batch.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -delete-blocking-executable/ │ │ │ │ │ ├── -delete-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -insert-blocking-executable/ │ │ │ │ │ ├── -insert-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -insert-select-blocking-executable/ │ │ │ │ │ ├── -insert-select-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -merge-blocking-executable/ │ │ │ │ │ ├── -merge-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -returning-blocking-executable/ │ │ │ │ │ ├── -returning-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iterator.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -s-q-l-server-batch-insert-blocking-executable/ │ │ │ │ │ ├── -s-q-l-server-batch-insert-blocking-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-always-batch.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -update-blocking-executable/ │ │ │ │ │ ├── -update-blocking-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -upsert-blocking-executable/ │ │ │ │ │ ├── -upsert-blocking-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── index.html │ │ │ │ └── to-executable.html │ │ │ ├── org.jetbrains.exposed.v1.jdbc.statements.api/ │ │ │ │ ├── -exposed-connection/ │ │ │ │ │ ├── auto-commit.html │ │ │ │ │ ├── catalog.html │ │ │ │ │ ├── close.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── connection.html │ │ │ │ │ ├── execute-in-batch.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-closed.html │ │ │ │ │ ├── metadata.html │ │ │ │ │ ├── prepare-statement.html │ │ │ │ │ ├── read-only.html │ │ │ │ │ ├── release-savepoint.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ ├── schema.html │ │ │ │ │ ├── set-savepoint.html │ │ │ │ │ └── transaction-isolation.html │ │ │ │ ├── -jdbc-exposed-database-metadata/ │ │ │ │ │ ├── -jdbc-exposed-database-metadata.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── database-dialect-mode.html │ │ │ │ │ ├── database-dialect-name.html │ │ │ │ │ ├── database-product-version.html │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ ├── existing-check-constraints.html │ │ │ │ │ ├── existing-indices.html │ │ │ │ │ ├── existing-primary-keys.html │ │ │ │ │ ├── existing-sequences.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── major-version.html │ │ │ │ │ ├── minor-version.html │ │ │ │ │ ├── schema-names.html │ │ │ │ │ ├── sequences.html │ │ │ │ │ ├── supports-alter-table-with-add-column.html │ │ │ │ │ ├── supports-alter-table-with-drop-column.html │ │ │ │ │ ├── supports-limit-with-update-or-delete.html │ │ │ │ │ ├── supports-multiple-result-sets.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── table-constraints.html │ │ │ │ │ ├── table-names-by-current-schema.html │ │ │ │ │ ├── table-names.html │ │ │ │ │ ├── url.html │ │ │ │ │ └── version.html │ │ │ │ ├── -jdbc-prepared-statement-api/ │ │ │ │ │ ├── add-batch.html │ │ │ │ │ ├── cancel.html │ │ │ │ │ ├── close-if-possible.html │ │ │ │ │ ├── execute-batch.html │ │ │ │ │ ├── execute-multiple.html │ │ │ │ │ ├── execute-query.html │ │ │ │ │ ├── execute-update.html │ │ │ │ │ ├── fetch-size.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── result-set.html │ │ │ │ │ └── timeout.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.jdbc.statements.jdbc/ │ │ │ │ ├── -jdbc-connection-impl/ │ │ │ │ │ ├── -jdbc-connection-impl.html │ │ │ │ │ ├── auto-commit.html │ │ │ │ │ ├── catalog.html │ │ │ │ │ ├── close.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── connection.html │ │ │ │ │ ├── execute-in-batch.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-closed.html │ │ │ │ │ ├── metadata.html │ │ │ │ │ ├── prepare-statement.html │ │ │ │ │ ├── read-only.html │ │ │ │ │ ├── release-savepoint.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ ├── schema.html │ │ │ │ │ ├── set-savepoint.html │ │ │ │ │ └── transaction-isolation.html │ │ │ │ ├── -jdbc-database-metadata-impl/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -jdbc-database-metadata-impl.html │ │ │ │ │ ├── clean-cache.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── database-dialect-mode.html │ │ │ │ │ ├── database-dialect-name.html │ │ │ │ │ ├── database-product-version.html │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ ├── existing-check-constraints.html │ │ │ │ │ ├── existing-indices.html │ │ │ │ │ ├── existing-primary-keys.html │ │ │ │ │ ├── existing-sequences.html │ │ │ │ │ ├── identifier-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── major-version.html │ │ │ │ │ ├── metadata.html │ │ │ │ │ ├── minor-version.html │ │ │ │ │ ├── reset-current-scheme.html │ │ │ │ │ ├── schema-names.html │ │ │ │ │ ├── sequences.html │ │ │ │ │ ├── supports-alter-table-with-add-column.html │ │ │ │ │ ├── supports-alter-table-with-drop-column.html │ │ │ │ │ ├── supports-limit-with-update-or-delete.html │ │ │ │ │ ├── supports-multiple-result-sets.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── table-constraints.html │ │ │ │ │ ├── table-names-by-current-schema.html │ │ │ │ │ ├── table-names.html │ │ │ │ │ ├── url.html │ │ │ │ │ └── version.html │ │ │ │ ├── -jdbc-prepared-statement-impl/ │ │ │ │ │ ├── -jdbc-prepared-statement-impl.html │ │ │ │ │ ├── add-batch.html │ │ │ │ │ ├── cancel.html │ │ │ │ │ ├── close-if-possible.html │ │ │ │ │ ├── execute-batch.html │ │ │ │ │ ├── execute-multiple.html │ │ │ │ │ ├── execute-query.html │ │ │ │ │ ├── execute-update.html │ │ │ │ │ ├── fetch-size.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── result-set.html │ │ │ │ │ ├── set-array.html │ │ │ │ │ ├── set-input-stream.html │ │ │ │ │ ├── set-null.html │ │ │ │ │ ├── set.html │ │ │ │ │ ├── statement.html │ │ │ │ │ ├── timeout.html │ │ │ │ │ └── was-generated-keys-requested.html │ │ │ │ ├── -jdbc-result/ │ │ │ │ │ ├── -jdbc-result.html │ │ │ │ │ ├── close.html │ │ │ │ │ ├── get-object.html │ │ │ │ │ ├── get-string.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── map-rows.html │ │ │ │ │ ├── next.html │ │ │ │ │ ├── release-result.html │ │ │ │ │ ├── result.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -jdbc-savepoint/ │ │ │ │ │ ├── -jdbc-savepoint.html │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── origin.html │ │ │ ├── org.jetbrains.exposed.v1.jdbc.transactions/ │ │ │ │ ├── -jdbc-transaction-interface/ │ │ │ │ │ ├── close.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── connection.html │ │ │ │ │ ├── db.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── outer-transaction.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ └── transaction-isolation.html │ │ │ │ ├── -jdbc-transaction-manager/ │ │ │ │ │ ├── db.html │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── new-transaction.html │ │ │ │ ├── -transaction-manager/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── close-and-unregister.html │ │ │ │ │ │ ├── current-or-new.html │ │ │ │ │ │ ├── current-or-null.html │ │ │ │ │ │ ├── current.html │ │ │ │ │ │ ├── default-database.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── manager-for.html │ │ │ │ │ │ ├── manager.html │ │ │ │ │ │ ├── primary-database.html │ │ │ │ │ │ └── register-manager.html │ │ │ │ │ ├── -transaction-manager.html │ │ │ │ │ ├── db.html │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ ├── default-max-attempts.html │ │ │ │ │ ├── default-max-retry-delay.html │ │ │ │ │ ├── default-min-retry-delay.html │ │ │ │ │ ├── default-read-only.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new-transaction.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── current-or-null.html │ │ │ │ ├── in-top-level-suspend-transaction.html │ │ │ │ ├── in-top-level-transaction.html │ │ │ │ ├── index.html │ │ │ │ ├── suspend-transaction.html │ │ │ │ ├── transaction-manager.html │ │ │ │ └── transaction.html │ │ │ ├── org.jetbrains.exposed.v1.jdbc.transactions.experimental/ │ │ │ │ ├── index.html │ │ │ │ ├── new-suspended-transaction.html │ │ │ │ ├── suspended-transaction-async.html │ │ │ │ └── with-suspend-transaction.html │ │ │ └── org.jetbrains.exposed.v1.jdbc.vendors/ │ │ │ ├── -database-dialect-metadata/ │ │ │ │ ├── -database-dialect-metadata.html │ │ │ │ ├── all-tables-names-in-all-schemas.html │ │ │ │ ├── all-tables-names.html │ │ │ │ ├── are-equivalent-column-types.html │ │ │ │ ├── catalog.html │ │ │ │ ├── column-constraints.html │ │ │ │ ├── existing-check-constraints.html │ │ │ │ ├── existing-indices.html │ │ │ │ ├── existing-primary-keys.html │ │ │ │ ├── existing-sequences.html │ │ │ │ ├── get-database.html │ │ │ │ ├── index.html │ │ │ │ ├── reset-caches.html │ │ │ │ ├── reset-schema-caches.html │ │ │ │ ├── schema-exists.html │ │ │ │ ├── sequence-exists.html │ │ │ │ ├── sequences.html │ │ │ │ ├── supports-limit-with-update-or-delete.html │ │ │ │ ├── table-columns.html │ │ │ │ └── table-exists.html │ │ │ ├── -h2-dialect-metadata/ │ │ │ │ ├── -h2-dialect-metadata.html │ │ │ │ ├── existing-indices.html │ │ │ │ └── index.html │ │ │ ├── -maria-d-b-dialect-metadata/ │ │ │ │ ├── -maria-d-b-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -mysql-dialect-metadata/ │ │ │ │ ├── -mysql-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -oracle-dialect-metadata/ │ │ │ │ ├── -oracle-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -postgre-s-q-l-dialect-metadata/ │ │ │ │ ├── -postgre-s-q-l-dialect-metadata.html │ │ │ │ ├── index.html │ │ │ │ └── supports-limit-with-update-or-delete.html │ │ │ ├── -postgre-s-q-l-n-g-dialect-metadata/ │ │ │ │ ├── -postgre-s-q-l-n-g-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -s-q-l-server-dialect-metadata/ │ │ │ │ ├── -s-q-l-server-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -s-q-lite-dialect-metadata/ │ │ │ │ ├── -s-q-lite-dialect-metadata.html │ │ │ │ ├── index.html │ │ │ │ └── supports-limit-with-update-or-delete.html │ │ │ ├── current-dialect-metadata.html │ │ │ └── index.html │ │ ├── exposed-jodatime/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.jodatime/ │ │ │ ├── -current-date/ │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -current-date-time/ │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -custom-date-function.html │ │ │ ├── -custom-date-time-function.html │ │ │ ├── -custom-time-function.html │ │ │ ├── -custom-timestamp-with-time-zone-function.html │ │ │ ├── -date/ │ │ │ │ ├── -date.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -date-time-with-time-zone-column-type/ │ │ │ │ ├── -date-time-with-time-zone-column-type.html │ │ │ │ ├── from-offset-date-time.html │ │ │ │ ├── index.html │ │ │ │ ├── to-offset-date-time.html │ │ │ │ └── value-from-d-b.html │ │ │ ├── -day/ │ │ │ │ ├── -day.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -hour/ │ │ │ │ ├── -hour.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -joda-local-date-column-type/ │ │ │ │ ├── -joda-local-date-column-type.html │ │ │ │ ├── from-local-date.html │ │ │ │ ├── index.html │ │ │ │ ├── to-local-date.html │ │ │ │ └── value-from-d-b.html │ │ │ ├── -joda-local-date-time-column-type/ │ │ │ │ ├── -joda-local-date-time-column-type.html │ │ │ │ ├── from-local-date-time.html │ │ │ │ ├── index.html │ │ │ │ ├── to-local-date-time.html │ │ │ │ └── value-from-d-b.html │ │ │ ├── -joda-local-time-column-type/ │ │ │ │ ├── -joda-local-time-column-type.html │ │ │ │ ├── from-local-time.html │ │ │ │ ├── index.html │ │ │ │ └── to-local-time.html │ │ │ ├── -minute/ │ │ │ │ ├── -minute.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -month/ │ │ │ │ ├── -month.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -second/ │ │ │ │ ├── -second.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -time/ │ │ │ │ ├── -time.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -year/ │ │ │ │ ├── -year.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── date-literal.html │ │ │ ├── date-param.html │ │ │ ├── date-time-literal.html │ │ │ ├── date-time-param.html │ │ │ ├── date.html │ │ │ ├── datetime.html │ │ │ ├── day.html │ │ │ ├── hour.html │ │ │ ├── index.html │ │ │ ├── minute.html │ │ │ ├── month.html │ │ │ ├── second.html │ │ │ ├── time-literal.html │ │ │ ├── time-param.html │ │ │ ├── time.html │ │ │ ├── timestamp-with-time-zone-literal.html │ │ │ ├── timestamp-with-time-zone-param.html │ │ │ ├── timestamp-with-time-zone.html │ │ │ └── year.html │ │ ├── exposed-json/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.json/ │ │ │ ├── -contains/ │ │ │ │ ├── -contains.html │ │ │ │ ├── candidate.html │ │ │ │ ├── index.html │ │ │ │ ├── json-type.html │ │ │ │ ├── path.html │ │ │ │ ├── target.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -exists/ │ │ │ │ ├── -exists.html │ │ │ │ ├── expression.html │ │ │ │ ├── index.html │ │ │ │ ├── json-type.html │ │ │ │ ├── optional.html │ │ │ │ ├── path.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -extract/ │ │ │ │ ├── -extract.html │ │ │ │ ├── expression.html │ │ │ │ ├── index.html │ │ │ │ ├── json-type.html │ │ │ │ ├── path.html │ │ │ │ ├── to-query-builder.html │ │ │ │ └── to-scalar.html │ │ │ ├── -json-b-column-type/ │ │ │ │ ├── -json-b-column-type.html │ │ │ │ ├── index.html │ │ │ │ ├── needs-binary-format-cast.html │ │ │ │ ├── non-null-value-as-default-string.html │ │ │ │ ├── parameter-marker.html │ │ │ │ ├── sql-type.html │ │ │ │ └── uses-binary-format.html │ │ │ ├── -json-column-type/ │ │ │ │ ├── -json-column-type.html │ │ │ │ ├── deserialize.html │ │ │ │ ├── index.html │ │ │ │ ├── needs-binary-format-cast.html │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ ├── parameter-marker.html │ │ │ │ ├── read-object.html │ │ │ │ ├── serialize.html │ │ │ │ ├── set-parameter.html │ │ │ │ ├── sql-type.html │ │ │ │ ├── uses-binary-format.html │ │ │ │ ├── value-from-d-b.html │ │ │ │ └── value-to-string.html │ │ │ ├── cast-to-json.html │ │ │ ├── contains.html │ │ │ ├── exists.html │ │ │ ├── extract.html │ │ │ ├── index.html │ │ │ ├── json.html │ │ │ └── jsonb.html │ │ ├── exposed-kotlin-datetime/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.datetime/ │ │ │ ├── -current-date/ │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -current-date-time/ │ │ │ │ └── index.html │ │ │ ├── -current-timestamp/ │ │ │ │ └── index.html │ │ │ ├── -current-timestamp-base/ │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -current-timestamp-with-time-zone/ │ │ │ │ └── index.html │ │ │ ├── -custom-date-function.html │ │ │ ├── -custom-date-time-function.html │ │ │ ├── -custom-duration-function.html │ │ │ ├── -custom-time-function.html │ │ │ ├── -custom-time-stamp-function.html │ │ │ ├── -custom-timestamp-with-time-zone-function.html │ │ │ ├── -date.html │ │ │ ├── -day.html │ │ │ ├── -hour.html │ │ │ ├── -kotlin-duration-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -kotlin-duration-column-type.html │ │ │ │ ├── from-duration.html │ │ │ │ ├── index.html │ │ │ │ └── to-duration.html │ │ │ ├── -kotlin-instant-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -kotlin-instant-column-type.html │ │ │ │ ├── from-instant.html │ │ │ │ ├── index.html │ │ │ │ └── to-instant.html │ │ │ ├── -kotlin-local-date-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -kotlin-local-date-column-type.html │ │ │ │ ├── from-local-date.html │ │ │ │ ├── index.html │ │ │ │ └── to-local-date.html │ │ │ ├── -kotlin-local-date-time-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -kotlin-local-date-time-column-type.html │ │ │ │ ├── from-local-date-time.html │ │ │ │ ├── index.html │ │ │ │ ├── to-local-date-time.html │ │ │ │ └── value-from-d-b.html │ │ │ ├── -kotlin-local-time-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -kotlin-local-time-column-type.html │ │ │ │ ├── from-local-time.html │ │ │ │ ├── index.html │ │ │ │ ├── to-local-time.html │ │ │ │ └── value-from-d-b.html │ │ │ ├── -kotlin-offset-date-time-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -kotlin-offset-date-time-column-type.html │ │ │ │ ├── from-offset-date-time.html │ │ │ │ ├── index.html │ │ │ │ └── to-offset-date-time.html │ │ │ ├── -minute.html │ │ │ ├── -month.html │ │ │ ├── -second.html │ │ │ ├── -time.html │ │ │ ├── -x-current-timestamp/ │ │ │ │ └── index.html │ │ │ ├── -x-custom-time-stamp-function.html │ │ │ ├── -x-kotlin-instant-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -x-kotlin-instant-column-type.html │ │ │ │ ├── from-instant.html │ │ │ │ ├── index.html │ │ │ │ └── to-instant.html │ │ │ ├── -year-internal/ │ │ │ │ ├── -year-internal.html │ │ │ │ ├── expr.html │ │ │ │ ├── index.html │ │ │ │ └── to-query-builder.html │ │ │ ├── -year.html │ │ │ ├── date-literal.html │ │ │ ├── date-param.html │ │ │ ├── date-time-literal.html │ │ │ ├── date-time-param.html │ │ │ ├── date.html │ │ │ ├── datetime.html │ │ │ ├── day.html │ │ │ ├── duration-literal.html │ │ │ ├── duration-param.html │ │ │ ├── duration.html │ │ │ ├── hour.html │ │ │ ├── index.html │ │ │ ├── minute.html │ │ │ ├── month.html │ │ │ ├── second.html │ │ │ ├── time-literal.html │ │ │ ├── time-param.html │ │ │ ├── time.html │ │ │ ├── timestamp-literal.html │ │ │ ├── timestamp-param.html │ │ │ ├── timestamp-with-time-zone-literal.html │ │ │ ├── timestamp-with-time-zone-param.html │ │ │ ├── timestamp-with-time-zone.html │ │ │ ├── timestamp.html │ │ │ ├── x-timestamp.html │ │ │ └── year.html │ │ ├── exposed-migration-core/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.migration.core/ │ │ │ ├── -migration-utility-api/ │ │ │ │ ├── -migration-utility-api.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── exposed-migration-jdbc/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.migration.jdbc/ │ │ │ ├── -migration-utils/ │ │ │ │ ├── drop-unmapped-columns-statements.html │ │ │ │ ├── drop-unmapped-indices.html │ │ │ │ ├── drop-unmapped-sequences.html │ │ │ │ ├── generate-migration-script.html │ │ │ │ ├── index.html │ │ │ │ └── statements-required-for-database-migration.html │ │ │ └── index.html │ │ ├── exposed-migration-r2dbc/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.migration.r2dbc/ │ │ │ ├── -migration-utils/ │ │ │ │ ├── drop-unmapped-columns-statements.html │ │ │ │ ├── drop-unmapped-indices.html │ │ │ │ ├── drop-unmapped-sequences.html │ │ │ │ ├── generate-migration-script.html │ │ │ │ ├── index.html │ │ │ │ └── statements-required-for-database-migration.html │ │ │ └── index.html │ │ ├── exposed-money/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.money/ │ │ │ ├── -composite-money-column/ │ │ │ │ ├── -composite-money-column.html │ │ │ │ ├── amount.html │ │ │ │ ├── currency.html │ │ │ │ └── index.html │ │ │ ├── -composite-money-column.html │ │ │ ├── -currency-column-type/ │ │ │ │ ├── -companion/ │ │ │ │ │ └── index.html │ │ │ │ ├── -currency-column-type.html │ │ │ │ ├── equals.html │ │ │ │ ├── hash-code.html │ │ │ │ ├── index.html │ │ │ │ ├── non-null-value-to-string.html │ │ │ │ ├── not-null-value-to-d-b.html │ │ │ │ ├── sql-type.html │ │ │ │ ├── validate-value-before-update.html │ │ │ │ └── value-from-d-b.html │ │ │ ├── composite-money.html │ │ │ ├── currency.html │ │ │ ├── index.html │ │ │ └── nullable.html │ │ ├── exposed-r2dbc/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── org.jetbrains.exposed.v1.r2dbc/ │ │ │ │ ├── -empty-sized-iterable/ │ │ │ │ │ ├── -empty-sized-iterable.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── offset.html │ │ │ │ │ └── order-by.html │ │ │ │ ├── -except/ │ │ │ │ │ ├── -except.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── operation-name.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── -explain-suspend-executable/ │ │ │ │ │ ├── -explain-suspend-executable.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -exposed-r2dbc-exception/ │ │ │ │ │ ├── -exposed-r2dbc-exception.html │ │ │ │ │ ├── caused-by-queries.html │ │ │ │ │ ├── contexts.html │ │ │ │ │ ├── get-s-q-l-state.html │ │ │ │ │ ├── get-specific-error-code.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── message.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -intersect/ │ │ │ │ │ ├── -intersect.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── -lazy-sized-collection/ │ │ │ │ │ ├── -lazy-sized-collection.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── for-update.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-loaded.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── not-for-update.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ └── wrapper.html │ │ │ │ ├── -lazy-sized-iterable/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── loaded-result.html │ │ │ │ ├── -query/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -query.html │ │ │ │ │ ├── adjust-column-set.html │ │ │ │ │ ├── adjust-select.html │ │ │ │ │ ├── adjust-where.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── fetch-batched-results.html │ │ │ │ │ ├── for-update.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── not-for-update.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ ├── set.html │ │ │ │ │ ├── statement.html │ │ │ │ │ ├── where.html │ │ │ │ │ └── with-distinct-on.html │ │ │ │ ├── -r2dbc-database/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── connect.html │ │ │ │ │ │ ├── get-default-isolation-level.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── register-dialect-metadata.html │ │ │ │ │ ├── connector.html │ │ │ │ │ ├── dialect-metadata.html │ │ │ │ │ ├── dialect-mode.html │ │ │ │ │ ├── dialect.html │ │ │ │ │ ├── full-version.html │ │ │ │ │ ├── identifier-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── supports-alter-table-with-add-column.html │ │ │ │ │ ├── supports-alter-table-with-drop-column.html │ │ │ │ │ ├── supports-multiple-result-sets.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── url.html │ │ │ │ │ ├── vendor.html │ │ │ │ │ └── version.html │ │ │ │ ├── -r2dbc-database-config/ │ │ │ │ │ ├── -builder/ │ │ │ │ │ │ ├── -builder.html │ │ │ │ │ │ ├── build.html │ │ │ │ │ │ ├── connection-factory-options.html │ │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ │ ├── default-r2dbc-isolation-level.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── set-url.html │ │ │ │ │ │ └── type-mapping.html │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── invoke.html │ │ │ │ │ ├── connection-factory-options.html │ │ │ │ │ ├── default-r2dbc-isolation-level.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── type-mapping.html │ │ │ │ ├── -r2dbc-transaction/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── global-interceptors.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -r2dbc-transaction.html │ │ │ │ │ ├── add-logger.html │ │ │ │ │ ├── clear-executed-statements.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── current-statement.html │ │ │ │ │ ├── db.html │ │ │ │ │ ├── default-logger.html │ │ │ │ │ ├── exec-in-batch.html │ │ │ │ │ ├── exec-query.html │ │ │ │ │ ├── exec.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-attempts.html │ │ │ │ │ ├── max-retry-delay.html │ │ │ │ │ ├── min-retry-delay.html │ │ │ │ │ ├── register-interceptor.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ ├── transaction-manager.html │ │ │ │ │ └── unregister-interceptor.html │ │ │ │ ├── -schema-utils/ │ │ │ │ │ ├── add-missing-columns-statements.html │ │ │ │ │ ├── check-cycle.html │ │ │ │ │ ├── check-excessive-foreign-key-constraints.html │ │ │ │ │ ├── check-excessive-indices.html │ │ │ │ │ ├── check-mapping-consistence.html │ │ │ │ │ ├── create-database.html │ │ │ │ │ ├── create-f-key.html │ │ │ │ │ ├── create-index.html │ │ │ │ │ ├── create-missing-tables-and-columns.html │ │ │ │ │ ├── create-schema.html │ │ │ │ │ ├── create-sequence.html │ │ │ │ │ ├── create-statements.html │ │ │ │ │ ├── create.html │ │ │ │ │ ├── drop-database.html │ │ │ │ │ ├── drop-schema.html │ │ │ │ │ ├── drop-sequence.html │ │ │ │ │ ├── drop.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── list-databases.html │ │ │ │ │ ├── list-tables-in-all-schemas.html │ │ │ │ │ ├── list-tables.html │ │ │ │ │ ├── set-schema.html │ │ │ │ │ ├── sort-tables-by-references.html │ │ │ │ │ ├── statements-required-to-actualize-scheme.html │ │ │ │ │ └── with-data-base-lock.html │ │ │ │ ├── -set-operation/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── first-statement.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── offset.html │ │ │ │ │ ├── operation-name.html │ │ │ │ │ ├── order-by.html │ │ │ │ │ ├── prepare-s-q-l.html │ │ │ │ │ ├── second-statement.html │ │ │ │ │ ├── set.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -sized-collection/ │ │ │ │ │ ├── -sized-collection.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── delegate.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── offset.html │ │ │ │ │ └── order-by.html │ │ │ │ ├── -sized-iterable/ │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── count.html │ │ │ │ │ ├── empty.html │ │ │ │ │ ├── for-update.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── limit.html │ │ │ │ │ ├── not-for-update.html │ │ │ │ │ ├── offset.html │ │ │ │ │ └── order-by.html │ │ │ │ ├── -union/ │ │ │ │ │ ├── -union.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── -union-all/ │ │ │ │ │ ├── -union-all.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── with-distinct.html │ │ │ │ ├── and-having.html │ │ │ │ ├── and-where.html │ │ │ │ ├── batch-insert.html │ │ │ │ ├── batch-replace.html │ │ │ │ ├── batch-upsert.html │ │ │ │ ├── delete-all.html │ │ │ │ ├── delete-ignore-where.html │ │ │ │ ├── delete-returning.html │ │ │ │ ├── delete-where.html │ │ │ │ ├── delete.html │ │ │ │ ├── dialect-name.html │ │ │ │ ├── dialect.html │ │ │ │ ├── empty-sized.html │ │ │ │ ├── except.html │ │ │ │ ├── exists.html │ │ │ │ ├── explain.html │ │ │ │ ├── index.html │ │ │ │ ├── insert-and-get-id.html │ │ │ │ ├── insert-ignore-and-get-id.html │ │ │ │ ├── insert-ignore.html │ │ │ │ ├── insert-returning.html │ │ │ │ ├── insert.html │ │ │ │ ├── intersect.html │ │ │ │ ├── map-lazy.html │ │ │ │ ├── merge-from.html │ │ │ │ ├── name.html │ │ │ │ ├── or-having.html │ │ │ │ ├── or-where.html │ │ │ │ ├── replace.html │ │ │ │ ├── select-all.html │ │ │ │ ├── select.html │ │ │ │ ├── union-all.html │ │ │ │ ├── union.html │ │ │ │ ├── update-returning.html │ │ │ │ ├── update.html │ │ │ │ ├── upsert-returning.html │ │ │ │ ├── upsert.html │ │ │ │ └── url-string.html │ │ │ ├── org.jetbrains.exposed.v1.r2dbc.mappers/ │ │ │ │ ├── -array-type-mapper/ │ │ │ │ │ ├── -array-type-mapper.html │ │ │ │ │ ├── column-types.html │ │ │ │ │ ├── dialects.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -binary-type-mapper/ │ │ │ │ │ ├── -binary-type-mapper.html │ │ │ │ │ ├── column-types.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -date-time-my-sql-type-mapper/ │ │ │ │ │ ├── -date-time-my-sql-type-mapper.html │ │ │ │ │ ├── dialects.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -date-time-null-type-mapper/ │ │ │ │ │ ├── -date-time-null-type-mapper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -date-time-oracle-type-mapper/ │ │ │ │ │ ├── -date-time-oracle-type-mapper.html │ │ │ │ │ ├── dialects.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -date-time-type-mapper/ │ │ │ │ │ ├── -date-time-type-mapper.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -default-type-mapper/ │ │ │ │ │ ├── -default-type-mapper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -exposed-column-type-mapper/ │ │ │ │ │ ├── -exposed-column-type-mapper.html │ │ │ │ │ ├── column-types.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -no-value-container/ │ │ │ │ │ ├── -no-value-container.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-present.html │ │ │ │ │ └── value.html │ │ │ │ ├── -postgres-specific-type-mapper/ │ │ │ │ │ ├── -postgres-specific-type-mapper.html │ │ │ │ │ ├── dialects.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -present-value-container/ │ │ │ │ │ ├── -present-value-container.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-present.html │ │ │ │ │ └── value.html │ │ │ │ ├── -primitive-type-mapper/ │ │ │ │ │ ├── -primitive-type-mapper.html │ │ │ │ │ ├── column-types.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -r2dbc-registry-type-mapping/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── register.html │ │ │ │ ├── -r2dbc-registry-type-mapping-impl/ │ │ │ │ │ ├── -r2dbc-registry-type-mapping-impl.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── register.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -r2dbc-type-mapping/ │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -type-mapper/ │ │ │ │ │ ├── column-types.html │ │ │ │ │ ├── dialects.html │ │ │ │ │ ├── get-value.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ ├── -value-container/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-present.html │ │ │ │ │ └── value.html │ │ │ │ ├── -value-type-mapper/ │ │ │ │ │ ├── -value-type-mapper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── priority.html │ │ │ │ │ └── set-value.html │ │ │ │ └── index.html │ │ │ ├── org.jetbrains.exposed.v1.r2dbc.statements/ │ │ │ │ ├── -batch-insert-suspend-executable/ │ │ │ │ │ ├── -batch-insert-suspend-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-always-batch.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -batch-update-suspend-executable/ │ │ │ │ │ ├── -batch-update-suspend-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -batch-upsert-suspend-executable/ │ │ │ │ │ ├── -batch-upsert-suspend-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -delete-suspend-executable/ │ │ │ │ │ ├── -delete-suspend-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -global-suspend-statement-interceptor/ │ │ │ │ │ └── index.html │ │ │ │ ├── -insert-select-suspend-executable/ │ │ │ │ │ ├── -insert-select-suspend-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -insert-suspend-executable/ │ │ │ │ │ ├── -insert-suspend-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -merge-suspend-executable/ │ │ │ │ │ ├── -merge-suspend-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -r2dbc-connection-impl/ │ │ │ │ │ ├── -r2dbc-connection-impl.html │ │ │ │ │ ├── close.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── connection.html │ │ │ │ │ ├── execute-in-batch.html │ │ │ │ │ ├── get-auto-commit.html │ │ │ │ │ ├── get-catalog.html │ │ │ │ │ ├── get-read-only.html │ │ │ │ │ ├── get-schema.html │ │ │ │ │ ├── get-transaction-isolation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-closed.html │ │ │ │ │ ├── metadata.html │ │ │ │ │ ├── prepare-statement.html │ │ │ │ │ ├── release-savepoint.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ ├── set-auto-commit.html │ │ │ │ │ ├── set-catalog.html │ │ │ │ │ ├── set-read-only.html │ │ │ │ │ ├── set-savepoint.html │ │ │ │ │ ├── set-transaction-definition.html │ │ │ │ │ └── set-transaction-isolation.html │ │ │ │ ├── -r2dbc-prepared-statement-impl/ │ │ │ │ │ ├── -r2dbc-prepared-statement-impl.html │ │ │ │ │ ├── add-batch.html │ │ │ │ │ ├── connection.html │ │ │ │ │ ├── execute-batch.html │ │ │ │ │ ├── execute-multiple.html │ │ │ │ │ ├── execute-query.html │ │ │ │ │ ├── execute-update.html │ │ │ │ │ ├── get-result-row.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── set-array.html │ │ │ │ │ ├── set-fetch-size.html │ │ │ │ │ ├── set-input-stream.html │ │ │ │ │ ├── set-null.html │ │ │ │ │ ├── set-timeout.html │ │ │ │ │ ├── set.html │ │ │ │ │ └── was-generated-keys-requested.html │ │ │ │ ├── -returning-suspend-executable/ │ │ │ │ │ ├── -returning-suspend-executable.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -s-q-l-server-batch-insert-suspend-executable/ │ │ │ │ │ ├── -s-q-l-server-batch-insert-suspend-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-always-batch.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -suspend-executable/ │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── execute.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-always-batch.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -suspend-statement-interceptor/ │ │ │ │ │ ├── after-commit.html │ │ │ │ │ ├── after-execution.html │ │ │ │ │ ├── after-rollback.html │ │ │ │ │ ├── after-statement-prepared.html │ │ │ │ │ ├── before-commit.html │ │ │ │ │ ├── before-execution.html │ │ │ │ │ ├── before-rollback.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── keep-user-data-in-transaction-store-on-commit.html │ │ │ │ ├── -update-suspend-executable/ │ │ │ │ │ ├── -update-suspend-executable.html │ │ │ │ │ ├── execute-internal.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── statement.html │ │ │ │ ├── -upsert-suspend-executable/ │ │ │ │ │ ├── -upsert-suspend-executable.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── prepared.html │ │ │ │ │ └── statement.html │ │ │ │ ├── index.html │ │ │ │ └── to-executable.html │ │ │ ├── org.jetbrains.exposed.v1.r2dbc.statements.api/ │ │ │ │ ├── -r2dbc-database-metadata-impl/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -r2dbc-database-metadata-impl.html │ │ │ │ │ ├── clean-cache.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── existing-check-constraints.html │ │ │ │ │ ├── existing-indices.html │ │ │ │ │ ├── existing-primary-keys.html │ │ │ │ │ ├── existing-sequences.html │ │ │ │ │ ├── get-database-dialect-mode.html │ │ │ │ │ ├── get-database-dialect-name.html │ │ │ │ │ ├── get-database-product-version.html │ │ │ │ │ ├── get-default-isolation-level.html │ │ │ │ │ ├── get-major-version.html │ │ │ │ │ ├── get-minor-version.html │ │ │ │ │ ├── get-version.html │ │ │ │ │ ├── identifier-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── reset-current-scheme.html │ │ │ │ │ ├── schema-names.html │ │ │ │ │ ├── sequences.html │ │ │ │ │ ├── table-constraints.html │ │ │ │ │ ├── table-names-by-current-schema.html │ │ │ │ │ └── table-names.html │ │ │ │ ├── -r2dbc-exposed-connection/ │ │ │ │ │ ├── close.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── connection.html │ │ │ │ │ ├── execute-in-batch.html │ │ │ │ │ ├── get-auto-commit.html │ │ │ │ │ ├── get-catalog.html │ │ │ │ │ ├── get-read-only.html │ │ │ │ │ ├── get-schema.html │ │ │ │ │ ├── get-transaction-isolation.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── is-closed.html │ │ │ │ │ ├── metadata.html │ │ │ │ │ ├── prepare-statement.html │ │ │ │ │ ├── release-savepoint.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ ├── set-auto-commit.html │ │ │ │ │ ├── set-catalog.html │ │ │ │ │ ├── set-read-only.html │ │ │ │ │ ├── set-savepoint.html │ │ │ │ │ ├── set-transaction-definition.html │ │ │ │ │ └── set-transaction-isolation.html │ │ │ │ ├── -r2dbc-exposed-database-metadata/ │ │ │ │ │ ├── -r2dbc-exposed-database-metadata.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── existing-check-constraints.html │ │ │ │ │ ├── existing-indices.html │ │ │ │ │ ├── existing-primary-keys.html │ │ │ │ │ ├── existing-sequences.html │ │ │ │ │ ├── get-database-dialect-mode.html │ │ │ │ │ ├── get-database-dialect-name.html │ │ │ │ │ ├── get-database-product-version.html │ │ │ │ │ ├── get-default-isolation-level.html │ │ │ │ │ ├── get-major-version.html │ │ │ │ │ ├── get-minor-version.html │ │ │ │ │ ├── get-version.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── schema-names.html │ │ │ │ │ ├── sequences.html │ │ │ │ │ ├── supports-alter-table-with-add-column.html │ │ │ │ │ ├── supports-alter-table-with-drop-column.html │ │ │ │ │ ├── supports-limit-with-update-or-delete.html │ │ │ │ │ ├── supports-multiple-result-sets.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── table-constraints.html │ │ │ │ │ ├── table-names-by-current-schema.html │ │ │ │ │ └── table-names.html │ │ │ │ ├── -r2dbc-local-metadata-impl/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── -c-o-n-n-e-c-t-i-o-n_-r-e-q-u-i-r-e-d_-e-r-r-o-r.html │ │ │ │ │ │ ├── -s-u-s-p-e-n-d_-r-e-q-u-i-r-e-d_-e-r-r-o-r.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -r2dbc-local-metadata-impl.html │ │ │ │ │ ├── clean-cache.html │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── existing-check-constraints.html │ │ │ │ │ ├── existing-indices.html │ │ │ │ │ ├── existing-primary-keys.html │ │ │ │ │ ├── existing-sequences.html │ │ │ │ │ ├── get-database-dialect-mode.html │ │ │ │ │ ├── get-database-dialect-name.html │ │ │ │ │ ├── get-database-product-version.html │ │ │ │ │ ├── get-default-isolation-level.html │ │ │ │ │ ├── get-major-version.html │ │ │ │ │ ├── get-minor-version.html │ │ │ │ │ ├── get-version.html │ │ │ │ │ ├── identifier-manager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── reset-current-scheme.html │ │ │ │ │ ├── schema-names.html │ │ │ │ │ ├── sequences.html │ │ │ │ │ ├── supports-alter-table-with-add-column.html │ │ │ │ │ ├── supports-alter-table-with-drop-column.html │ │ │ │ │ ├── supports-limit-with-update-or-delete.html │ │ │ │ │ ├── supports-multiple-result-sets.html │ │ │ │ │ ├── supports-select-for-update.html │ │ │ │ │ ├── table-constraints.html │ │ │ │ │ ├── table-names-by-current-schema.html │ │ │ │ │ └── table-names.html │ │ │ │ ├── -r2dbc-prepared-statement-api/ │ │ │ │ │ ├── add-batch.html │ │ │ │ │ ├── execute-batch.html │ │ │ │ │ ├── execute-multiple.html │ │ │ │ │ ├── execute-query.html │ │ │ │ │ ├── execute-update.html │ │ │ │ │ ├── get-result-row.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── set-fetch-size.html │ │ │ │ │ └── set-timeout.html │ │ │ │ ├── -r2dbc-result/ │ │ │ │ │ ├── close.html │ │ │ │ │ ├── collect.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── map-rows.html │ │ │ │ │ ├── map-segments.html │ │ │ │ │ ├── rows-updated.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── -r2dbc-row/ │ │ │ │ │ ├── -r2dbc-row.html │ │ │ │ │ ├── get-object.html │ │ │ │ │ ├── get-string.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── row.html │ │ │ │ ├── -r2dbc-savepoint/ │ │ │ │ │ ├── -r2dbc-savepoint.html │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── metadata.html │ │ │ │ ├── origin.html │ │ │ │ └── rows-count.html │ │ │ ├── org.jetbrains.exposed.v1.r2dbc.transactions/ │ │ │ │ ├── -r2dbc-transaction-interface/ │ │ │ │ │ ├── close.html │ │ │ │ │ ├── commit.html │ │ │ │ │ ├── connection.html │ │ │ │ │ ├── db.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── outer-transaction.html │ │ │ │ │ ├── rollback.html │ │ │ │ │ └── transaction-isolation.html │ │ │ │ ├── -r2dbc-transaction-manager/ │ │ │ │ │ ├── db.html │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── new-transaction.html │ │ │ │ ├── -transaction-manager/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── close-and-unregister.html │ │ │ │ │ │ ├── current-or-new.html │ │ │ │ │ │ ├── current-or-null.html │ │ │ │ │ │ ├── current.html │ │ │ │ │ │ ├── default-database.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── manager-for.html │ │ │ │ │ │ ├── manager.html │ │ │ │ │ │ ├── primary-database.html │ │ │ │ │ │ └── register-manager.html │ │ │ │ │ ├── -transaction-manager.html │ │ │ │ │ ├── db.html │ │ │ │ │ ├── default-isolation-level.html │ │ │ │ │ ├── default-max-attempts.html │ │ │ │ │ ├── default-max-retry-delay.html │ │ │ │ │ ├── default-min-retry-delay.html │ │ │ │ │ ├── default-read-only.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new-transaction.html │ │ │ │ │ └── to-string.html │ │ │ │ ├── current-or-null.html │ │ │ │ ├── in-top-level-suspend-transaction.html │ │ │ │ ├── index.html │ │ │ │ ├── suspend-transaction.html │ │ │ │ └── transaction-manager.html │ │ │ └── org.jetbrains.exposed.v1.r2dbc.vendors/ │ │ │ ├── -database-dialect-metadata/ │ │ │ │ ├── -database-dialect-metadata.html │ │ │ │ ├── all-tables-names-in-all-schemas.html │ │ │ │ ├── all-tables-names.html │ │ │ │ ├── are-equivalent-column-types.html │ │ │ │ ├── catalog.html │ │ │ │ ├── column-constraints.html │ │ │ │ ├── existing-check-constraints.html │ │ │ │ ├── existing-indices.html │ │ │ │ ├── existing-primary-keys.html │ │ │ │ ├── existing-sequences.html │ │ │ │ ├── get-database.html │ │ │ │ ├── index.html │ │ │ │ ├── reset-caches.html │ │ │ │ ├── reset-schema-caches.html │ │ │ │ ├── schema-exists.html │ │ │ │ ├── sequence-exists.html │ │ │ │ ├── sequences.html │ │ │ │ ├── supports-limit-with-update-or-delete.html │ │ │ │ ├── table-columns.html │ │ │ │ └── table-exists.html │ │ │ ├── -h2-dialect-metadata/ │ │ │ │ ├── -h2-dialect-metadata.html │ │ │ │ ├── existing-indices.html │ │ │ │ └── index.html │ │ │ ├── -maria-d-b-dialect-metadata/ │ │ │ │ ├── -maria-d-b-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -mysql-dialect-metadata/ │ │ │ │ ├── -mysql-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -oracle-dialect-metadata/ │ │ │ │ ├── -oracle-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── -postgre-s-q-l-dialect-metadata/ │ │ │ │ ├── -postgre-s-q-l-dialect-metadata.html │ │ │ │ ├── index.html │ │ │ │ └── supports-limit-with-update-or-delete.html │ │ │ ├── -s-q-l-server-dialect-metadata/ │ │ │ │ ├── -s-q-l-server-dialect-metadata.html │ │ │ │ └── index.html │ │ │ ├── current-dialect-metadata.html │ │ │ └── index.html │ │ ├── exposed-spring-boot-starter/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── org.jetbrains.exposed.v1.spring.boot/ │ │ │ │ ├── -database-initializer/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── -d-a-t-a-b-a-s-e_-i-n-i-t-i-a-l-i-z-e-r_-o-r-d-e-r.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -database-initializer.html │ │ │ │ │ ├── get-order.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── order.html │ │ │ │ │ └── run.html │ │ │ │ ├── -exposed-aot-contribution/ │ │ │ │ │ ├── -exposed-aot-contribution.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── process-ahead-of-time.html │ │ │ │ ├── discover-exposed-tables.html │ │ │ │ └── index.html │ │ │ └── org.jetbrains.exposed.v1.spring.boot.autoconfigure/ │ │ │ ├── -exposed-auto-configuration/ │ │ │ │ ├── -exposed-auto-configuration.html │ │ │ │ ├── database-config.html │ │ │ │ ├── database-initializer.html │ │ │ │ ├── exposed-spring-transaction-attribute-source.html │ │ │ │ ├── index.html │ │ │ │ └── spring-transaction-manager.html │ │ │ └── index.html │ │ ├── exposed-spring-boot4-starter/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ ├── org.jetbrains.exposed.v1.spring.boot4/ │ │ │ │ ├── -database-initializer/ │ │ │ │ │ ├── -companion/ │ │ │ │ │ │ ├── -d-a-t-a-b-a-s-e_-i-n-i-t-i-a-l-i-z-e-r_-o-r-d-e-r.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── -database-initializer.html │ │ │ │ │ ├── get-order.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── order.html │ │ │ │ │ └── run.html │ │ │ │ ├── -exposed-aot-contribution/ │ │ │ │ │ ├── -exposed-aot-contribution.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── process-ahead-of-time.html │ │ │ │ ├── discover-exposed-tables.html │ │ │ │ └── index.html │ │ │ └── org.jetbrains.exposed.v1.spring.boot4.autoconfigure/ │ │ │ ├── -exposed-auto-configuration/ │ │ │ │ ├── -exposed-auto-configuration.html │ │ │ │ ├── database-config.html │ │ │ │ ├── database-initializer.html │ │ │ │ ├── exposed-spring-transaction-attribute-source.html │ │ │ │ ├── index.html │ │ │ │ └── spring-transaction-manager.html │ │ │ └── index.html │ │ ├── index.html │ │ ├── navigation.html │ │ ├── package-list │ │ ├── scripts/ │ │ │ ├── main.js │ │ │ ├── navigation-loader.js │ │ │ ├── pages.json │ │ │ ├── platform-content-handler.js │ │ │ ├── prism.js │ │ │ ├── safe-local-storage_blocking.js │ │ │ └── sourceset_dependencies.js │ │ ├── spring-transaction/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.spring.transaction/ │ │ │ ├── -exposed-spring-transaction-attribute-source/ │ │ │ │ ├── -exposed-spring-transaction-attribute-source.html │ │ │ │ ├── get-transaction-attribute.html │ │ │ │ └── index.html │ │ │ ├── -spring-transaction-manager/ │ │ │ │ ├── -spring-transaction-manager.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── spring7-transaction/ │ │ │ ├── index.html │ │ │ ├── navigation.html │ │ │ └── org.jetbrains.exposed.v1.spring7.transaction/ │ │ │ ├── -exposed-spring-transaction-attribute-source/ │ │ │ │ ├── -exposed-spring-transaction-attribute-source.html │ │ │ │ ├── get-transaction-attribute.html │ │ │ │ └── index.html │ │ │ ├── -spring-transaction-manager/ │ │ │ │ ├── -spring-transaction-manager.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── styles/ │ │ ├── logo-styles.css │ │ ├── main.css │ │ ├── prism.css │ │ └── style.css │ ├── breaking-changes.html │ ├── contributing.html │ ├── dao-crud-operations.html │ ├── dao-entity-definition.html │ ├── dao-field-transformations.html │ ├── dao-relationships.html │ ├── dao-table-types.html │ ├── data-types.html │ ├── dsl-crud-operations.html │ ├── dsl-joining-tables.html │ ├── dsl-querying-data.html │ ├── dsl-table-types.html │ ├── exposed-modules.html │ ├── frequently-asked-questions.html │ ├── getting-started-with-exposed.html │ ├── home.html │ ├── index.html │ ├── migration-guide.html │ ├── sql-functions.html │ ├── transactions.html │ ├── working-with-database.html │ ├── working-with-datasource.html │ ├── working-with-schema.html │ ├── working-with-sequence.html │ └── working-with-tables.html ├── documentation-website/ │ └── Writerside/ │ ├── c.list │ ├── cfg/ │ │ ├── build-script.xml │ │ ├── buildprofiles.xml │ │ └── google-search.html │ ├── hi.tree │ ├── labels.list │ ├── redirection-rules.xml │ ├── snippets/ │ │ ├── README.md │ │ ├── exposed-dao/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ ├── entities/ │ │ │ │ ├── BaseEntity.kt │ │ │ │ ├── BaseEntityClass.kt │ │ │ │ ├── CityEntity.kt │ │ │ │ ├── DirectorCustomEntity.kt │ │ │ │ ├── DirectorEntity.kt │ │ │ │ ├── EntityWithBase64.kt │ │ │ │ ├── EntityWithUInt.kt │ │ │ │ ├── StarWarsFilmEntity.kt │ │ │ │ ├── StarWarsFilmWithRankEntity.kt │ │ │ │ ├── UserEntity.kt │ │ │ │ ├── UserEntityWithOverride.kt │ │ │ │ └── UserRatingEntity.kt │ │ │ ├── examples/ │ │ │ │ ├── CreateExamples.kt │ │ │ │ ├── DeleteExamples.kt │ │ │ │ ├── ReadExamples.kt │ │ │ │ └── UpdateExamples.kt │ │ │ └── tables/ │ │ │ ├── BaseTable.kt │ │ │ ├── CitiesTable.kt │ │ │ ├── DirectorsCustomTable.kt │ │ │ ├── DirectorsTable.kt │ │ │ ├── DirectorsWithGuildRefTable.kt │ │ │ ├── GuildsTable.kt │ │ │ ├── StarWarsFilmsTable.kt │ │ │ ├── StarWarsFilmsWithRankTable.kt │ │ │ ├── UserRatingsTable.kt │ │ │ └── UsersTable.kt │ │ ├── exposed-dao-relationships/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ ├── entities/ │ │ │ │ ├── ActorEntity.kt │ │ │ │ ├── DirectorEntity.kt │ │ │ │ ├── StarWarsFilmEntity.kt │ │ │ │ ├── UserEntity.kt │ │ │ │ └── UserRatingEntity.kt │ │ │ ├── examples/ │ │ │ │ ├── EagerLoadingExamples.kt │ │ │ │ ├── ManyToManyExamples.kt │ │ │ │ ├── OneToManyExamples.kt │ │ │ │ └── ParentChildExamples.kt │ │ │ └── tables/ │ │ │ ├── ActorsTable.kt │ │ │ ├── DirectorsTable.kt │ │ │ ├── StarWarsFilmsTable.kt │ │ │ ├── UserRatingsTable.kt │ │ │ └── UsersTable.kt │ │ ├── exposed-data-types/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ └── examples/ │ │ │ ├── ArrayExamples.kt │ │ │ ├── BasicTypesExamples.kt │ │ │ ├── BinaryExamples.kt │ │ │ ├── DateTimeExamples.kt │ │ │ ├── EnumerationExamples.kt │ │ │ └── JSONandJSONBExamples.kt │ │ ├── exposed-databases-jdbc/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ └── Databases.kt │ │ ├── exposed-databases-r2dbc/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ ├── R2DBCDatabases.kt │ │ │ └── UsersTable.kt │ │ ├── exposed-dsl/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ ├── examples/ │ │ │ │ ├── AliasExamples.kt │ │ │ │ ├── BuildStatementExamples.kt │ │ │ │ ├── CreateExamples.kt │ │ │ │ ├── CustomSelectExamples.kt │ │ │ │ ├── DeleteExamples.kt │ │ │ │ ├── InsertSelectExamples.kt │ │ │ │ ├── JoinExamples.kt │ │ │ │ ├── ModifiedRowsExamples.kt │ │ │ │ ├── QueryingExamples.kt │ │ │ │ ├── ReadExamples.kt │ │ │ │ ├── ReplaceExamples.kt │ │ │ │ ├── UpdateExamples.kt │ │ │ │ └── UpdateOrInsertExamples.kt │ │ │ └── tables/ │ │ │ ├── ActorsIntIdTable.kt │ │ │ ├── ActorsTable.kt │ │ │ ├── CitiesTable.kt │ │ │ ├── RolesTable.kt │ │ │ ├── StarWarsFilmsIntIdTable.kt │ │ │ ├── StarWarsFilmsTable.kt │ │ │ ├── TableWithCustomName.kt │ │ │ └── UsersTable.kt │ │ ├── exposed-migrations/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ ├── GenerateMigrationScript.kt │ │ │ ├── migrations/ │ │ │ │ └── V2__Add_primary_key.sql │ │ │ └── tables/ │ │ │ └── UsersTable.kt │ │ ├── exposed-modules-groovy-gradle/ │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── com/ │ │ │ └── example/ │ │ │ └── Main.kt │ │ ├── exposed-modules-kotlin-gradle/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── com/ │ │ │ └── example/ │ │ │ └── Main.kt │ │ ├── exposed-modules-maven/ │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── com/ │ │ │ └── example/ │ │ │ └── Main.kt │ │ ├── exposed-spring/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ ├── gradle/ │ │ │ │ └── wrapper/ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── requests.http │ │ │ ├── settings.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── kotlin/ │ │ │ │ └── com/ │ │ │ │ └── example/ │ │ │ │ └── exposedspring/ │ │ │ │ ├── ExposedSpringApplication.kt │ │ │ │ ├── Message.kt │ │ │ │ ├── MessageController.kt │ │ │ │ ├── MessageEntity.kt │ │ │ │ ├── MessageService.kt │ │ │ │ └── SchemaInitialize.kt │ │ │ └── resources/ │ │ │ ├── application.properties │ │ │ └── schema.sql │ │ ├── exposed-sql-functions/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ ├── examples/ │ │ │ │ ├── AggregateFuncExamples.kt │ │ │ │ ├── CustomFuncExamples.kt │ │ │ │ ├── CustomTrimFunction.kt │ │ │ │ ├── StringFuncExamples.kt │ │ │ │ └── WindowFuncExamples.kt │ │ │ └── tables/ │ │ │ └── FilmBoxOfficeTable.kt │ │ ├── exposed-transactions/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ ├── examples/ │ │ │ │ ├── ExecAndMapFunction.kt │ │ │ │ ├── ExecExamples.kt │ │ │ │ ├── ExecMySQLExamples.kt │ │ │ │ └── SavepointExample.kt │ │ │ └── tables/ │ │ │ └── FilmsTable.kt │ │ ├── get-started-with-exposed/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ └── Task.kt │ │ ├── get-started-with-exposed-dao/ │ │ │ ├── README.md │ │ │ ├── build.gradle.kts │ │ │ └── src/ │ │ │ └── main/ │ │ │ └── kotlin/ │ │ │ └── org/ │ │ │ └── example/ │ │ │ ├── App.kt │ │ │ └── Task.kt │ │ ├── gradle/ │ │ │ ├── libs.versions.toml │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts │ ├── topics/ │ │ ├── About.topic │ │ ├── Adding-dependencies.md │ │ ├── Array-types.topic │ │ ├── Binary-types.topic │ │ ├── Breaking-Changes.md │ │ ├── Column-transformation.topic │ │ ├── Contributing.md │ │ ├── Custom-data-types.topic │ │ ├── Custom-type-mapping.md │ │ ├── DAO-CRUD-Operations.topic │ │ ├── DAO-Entity-definition.topic │ │ ├── DAO-Relationships.topic │ │ ├── DAO-Table-Types.topic │ │ ├── DSL-CRUD-operations.topic │ │ ├── DSL-Joining-tables.topic │ │ ├── DSL-Querying-data.topic │ │ ├── DSL-Statement-Builder.md │ │ ├── DSL-Table-Types.topic │ │ ├── Date-and-time-types.topic │ │ ├── Enumeration-types.topic │ │ ├── Frequently-Asked-Questions.md │ │ ├── Get-Started-with-Exposed.topic │ │ ├── Get-started-with-Exposed-DAO.md │ │ ├── Home.topic │ │ ├── JSON-And-JSONB-types.topic │ │ ├── Migration-Guide-0-46-0.md │ │ ├── Migration-Guide-1-0-0.md │ │ ├── Migrations.md │ │ ├── Numeric-Boolean-String-Types.topic │ │ ├── SQL-Functions.md │ │ ├── Spring-Boot-integration.md │ │ ├── Statement-Interceptors.md │ │ ├── Transactions.md │ │ ├── Working-with-ConnectionFactory.md │ │ ├── Working-with-DataSource.md │ │ ├── Working-with-Database.md │ │ ├── Working-with-SQL-Strings.md │ │ ├── Working-with-Schema.topic │ │ ├── Working-with-Sequence.topic │ │ ├── Working-with-Tables.topic │ │ └── lib.topic │ ├── v.list │ └── writerside.cfg ├── exposed-bom/ │ ├── README.md │ └── build.gradle.kts ├── exposed-core/ │ ├── api/ │ │ └── exposed-core.api │ ├── build.gradle.kts │ └── src/ │ └── main/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── core/ │ ├── AbstractQuery.kt │ ├── Alias.kt │ ├── Annotations.kt │ ├── Column.kt │ ├── ColumnDiff.kt │ ├── ColumnType.kt │ ├── CompositeColumn.kt │ ├── Constraints.kt │ ├── DatabaseApi.kt │ ├── DatabaseConfig.kt │ ├── Exceptions.kt │ ├── ExplainQuery.kt │ ├── Expression.kt │ ├── Function.kt │ ├── FunctionBuilder.kt │ ├── LiteralOp.kt │ ├── Op.kt │ ├── OpBuilder.kt │ ├── QueryParameter.kt │ ├── ResultRow.kt │ ├── SQLExpressionBuilder.kt │ ├── SQLLog.kt │ ├── Schema.kt │ ├── SchemaUtilityApi.kt │ ├── Sequence.kt │ ├── SortOrder.kt │ ├── Table.kt │ ├── TableDepthGraph.kt │ ├── Transaction.kt │ ├── Version.kt │ ├── WindowFunction.kt │ ├── WindowFunctionBuilder.kt │ ├── dao/ │ │ └── id/ │ │ ├── CompositeID.kt │ │ ├── EntityID.kt │ │ ├── IdTable.kt │ │ └── java/ │ │ └── UUIDTable.kt │ ├── datetime/ │ │ ├── DurationColumnType.kt │ │ ├── InstantColumnType.kt │ │ ├── LocalDateColumnType.kt │ │ ├── LocalDateTimeColumnType.kt │ │ ├── LocalTimeColumnType.kt │ │ └── OffsetDateTimeColumnType.kt │ ├── functions/ │ │ ├── array/ │ │ │ └── ArrayFunctions.kt │ │ └── math/ │ │ ├── MathFunctions.kt │ │ └── TrigonometricalFunctions.kt │ ├── java/ │ │ └── UUIDColumnType.kt │ ├── ops/ │ │ ├── AllAnyOps.kt │ │ ├── InListOps.kt │ │ └── InTableOp.kt │ ├── statements/ │ │ ├── BatchInsertStatement.kt │ │ ├── BatchReplaceStatement.kt │ │ ├── BatchUpdateStatement.kt │ │ ├── BatchUpsertStatement.kt │ │ ├── DeleteStatement.kt │ │ ├── InsertSelectStatement.kt │ │ ├── InsertStatement.kt │ │ ├── MergeStatement.kt │ │ ├── ReplaceStatement.kt │ │ ├── ReturningStatement.kt │ │ ├── SQLServerBatchInsertStatement.kt │ │ ├── Statement.kt │ │ ├── StatementBuilder.kt │ │ ├── StatementInterceptor.kt │ │ ├── UpdateBuilder.kt │ │ ├── UpdateStatement.kt │ │ ├── UpsertStatement.kt │ │ └── api/ │ │ ├── ExposedBlob.kt │ │ ├── ExposedDatabaseMetadata.kt │ │ ├── ExposedMetadataUtils.kt │ │ ├── ExposedSavepoint.kt │ │ ├── IdentifierManagerApi.kt │ │ ├── PreparedStatementApi.kt │ │ └── ResultApi.kt │ ├── transactions/ │ │ ├── DatabasesManager.kt │ │ ├── ThreadLocalTransactionsStack.kt │ │ ├── TransactionInterface.kt │ │ ├── TransactionManagerApi.kt │ │ ├── TransactionManagersContainer.kt │ │ ├── TransactionScope.kt │ │ ├── Transactions.kt │ │ └── suspend/ │ │ ├── TransactionContextElement.kt │ │ └── TransactionContextHolder.kt │ ├── utils/ │ │ ├── CachableMapWithDefault.kt │ │ └── CachableMapWithSuspendableDefault.kt │ └── vendors/ │ ├── ColumnMetadata.kt │ ├── DataTypeProvider.kt │ ├── DatabaseDialect.kt │ ├── ForUpdateOption.kt │ ├── FunctionProvider.kt │ ├── H2.kt │ ├── Keywords.kt │ ├── MariaDBDialect.kt │ ├── MysqlDialect.kt │ ├── OracleDialect.kt │ ├── PostgreSQL.kt │ ├── PrimaryKeyMetadata.kt │ ├── SQLServerDialect.kt │ ├── SQLiteDialect.kt │ ├── SchemaMetadata.kt │ └── VendorDialect.kt ├── exposed-crypt/ │ ├── api/ │ │ └── exposed-crypt.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── crypt/ │ │ ├── Algorithms.kt │ │ ├── EncryptedBinaryColumnType.kt │ │ ├── EncryptedVarCharColumnType.kt │ │ ├── Encryptor.kt │ │ └── Tables.kt │ └── test/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── crypt/ │ │ ├── EncryptedColumnDaoTests.kt │ │ └── EncryptedColumnTests.kt │ └── resources/ │ └── logback-test.xml ├── exposed-dao/ │ ├── api/ │ │ └── exposed-dao.api │ ├── build.gradle.kts │ └── src/ │ └── main/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── dao/ │ │ ├── CompositeEntity.kt │ │ ├── DaoEntityID.kt │ │ ├── DaoEntityIDFactory.kt │ │ ├── Entity.kt │ │ ├── EntityBatchUpdate.kt │ │ ├── EntityCache.kt │ │ ├── EntityClass.kt │ │ ├── EntityHook.kt │ │ ├── EntityLifecycleInterceptor.kt │ │ ├── InnerTableLink.kt │ │ ├── IntEntity.kt │ │ ├── LinkedIdentityHashSet.kt │ │ ├── LongEntity.kt │ │ ├── References.kt │ │ ├── UIntEntity.kt │ │ ├── ULongEntity.kt │ │ ├── UuidEntity.kt │ │ ├── View.kt │ │ ├── exceptions/ │ │ │ └── EntityNotFoundException.kt │ │ └── java/ │ │ └── UUIDEntity.kt │ └── resources/ │ └── META-INF/ │ └── services/ │ ├── org.jetbrains.exposed.v1.core.dao.id.EntityIDFactory │ └── org.jetbrains.exposed.v1.core.statements.GlobalStatementInterceptor ├── exposed-java-time/ │ ├── api/ │ │ └── exposed-java-time.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── javatime/ │ │ ├── JavaDateColumnType.kt │ │ └── JavaDateFunctions.kt │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── javatime/ │ ├── DateTimeLiteralTest.kt │ ├── DefaultsTest.kt │ ├── JavaTimeTests.kt │ ├── MiscTableTest.kt │ └── sqlserver/ │ └── SQLServerDefaultsTest.kt ├── exposed-jdbc/ │ ├── api/ │ │ └── exposed-jdbc.api │ ├── build.gradle.kts │ └── src/ │ └── main/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── jdbc/ │ │ ├── Database.kt │ │ ├── ExplainBlockingExecutable.kt │ │ ├── ExposedConnectionImpl.kt │ │ ├── IterableEx.kt │ │ ├── JdbcTransaction.kt │ │ ├── MetadataQueries.kt │ │ ├── Queries.kt │ │ ├── Query.kt │ │ ├── SchemaUtils.kt │ │ ├── SetOperations.kt │ │ ├── statements/ │ │ │ ├── BatchInsertBlockingExecutable.kt │ │ │ ├── BatchUpdateBlockingExecutable.kt │ │ │ ├── BatchUpsertBlockingExecutable.kt │ │ │ ├── BlockingExecutable.kt │ │ │ ├── DeleteBlockingExecutable.kt │ │ │ ├── InsertBlockingExecutable.kt │ │ │ ├── InsertSelectBlockingExecutable.kt │ │ │ ├── MergeBlockingExecutable.kt │ │ │ ├── ReturningBlockingExecutable.kt │ │ │ ├── StatementIterator.kt │ │ │ ├── UpdateBlockingExecutable.kt │ │ │ ├── UpsertBlockingExecutable.kt │ │ │ ├── api/ │ │ │ │ ├── ExposedConnection.kt │ │ │ │ ├── JdbcExposedDatabaseMetadata.kt │ │ │ │ └── JdbcPreparedStatementApi.kt │ │ │ └── jdbc/ │ │ │ ├── JdbcConnectionImpl.kt │ │ │ ├── JdbcDatabaseMetadataImpl.kt │ │ │ ├── JdbcIdentifierManager.kt │ │ │ ├── JdbcPreparedStatementImpl.kt │ │ │ ├── JdbcResult.kt │ │ │ └── JdbcSavepoint.kt │ │ ├── transactions/ │ │ │ ├── JdbcTransactionInterface.kt │ │ │ ├── JdbcTransactionManager.kt │ │ │ ├── TransactionManager.kt │ │ │ ├── Transactions.kt │ │ │ └── experimental/ │ │ │ └── Suspended.kt │ │ └── vendors/ │ │ ├── DatabaseDialectMetadata.kt │ │ ├── H2DialectMetadata.kt │ │ ├── MariaDBDialectMetadata.kt │ │ ├── MysqlDialectMetadata.kt │ │ ├── OracleDialectMetadata.kt │ │ ├── PostgreSQLDialectMetadata.kt │ │ ├── SQLServerDialectMetadata.kt │ │ └── SQLiteDialectMetadata.kt │ └── resources/ │ └── META-INF/ │ └── services/ │ └── org.jetbrains.exposed.v1.jdbc.DatabaseConnectionAutoRegistration ├── exposed-jdbc-r2dbc-tests/ │ ├── .gitignore │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── test/ │ │ └── mixed/ │ │ └── MixedDatabaseTestsBase.kt │ └── test/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── test/ │ │ └── mixed/ │ │ └── MixedDatabasesConnectionTests.kt │ └── resources/ │ └── logback-test.xml ├── exposed-jodatime/ │ ├── api/ │ │ └── exposed-jodatime.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── jodatime/ │ │ ├── DateColumnType.kt │ │ └── DateFunctions.kt │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── jodatime/ │ ├── JodaDateTimeLiteralTest.kt │ ├── JodaTimeDefaultsTest.kt │ ├── JodaTimeMiscTableTest.kt │ └── JodaTimeTests.kt ├── exposed-json/ │ ├── api/ │ │ └── exposed-json.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── json/ │ │ ├── JsonBColumnType.kt │ │ ├── JsonColumnType.kt │ │ ├── JsonConditions.kt │ │ └── JsonFunctions.kt │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── json/ │ ├── JsonBColumnTests.kt │ ├── JsonColumnTests.kt │ └── JsonTestsData.kt ├── exposed-kotlin-datetime/ │ ├── api/ │ │ └── exposed-kotlin-datetime.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── datetime/ │ │ ├── KotlinDateColumnType.kt │ │ └── KotlinDateFunctions.kt │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── datetime/ │ ├── DateTimeLiteralTest.kt │ ├── DefaultsTest.kt │ ├── KotlinTimeTests.kt │ ├── MiscTableTest.kt │ └── sqlserver/ │ └── SQLServerDefaultsTest.kt ├── exposed-migration-core/ │ ├── api/ │ │ └── exposed-migration-core.api │ ├── build.gradle.kts │ └── src/ │ └── main/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── migration/ │ └── core/ │ └── MigrationUtilityApi.kt ├── exposed-migration-jdbc/ │ ├── api/ │ │ └── exposed-migration-jdbc.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── migration/ │ │ └── jdbc/ │ │ └── MigrationUtils.kt │ └── test/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── migration/ │ │ └── jdbc/ │ │ ├── ColumnCommentMigrationTests.kt │ │ ├── DatabaseMigrationTests.kt │ │ ├── GenerateScriptTests.kt │ │ ├── IndexConstraintsTests.kt │ │ ├── MigrationTestsData.kt │ │ └── SequenceAutoIncrementTests.kt │ └── resources/ │ └── logback-test.xml ├── exposed-migration-r2dbc/ │ ├── api/ │ │ └── exposed-migration-r2dbc.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── migration/ │ │ └── r2dbc/ │ │ └── MigrationUtils.kt │ └── test/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── migration/ │ │ └── r2dbc/ │ │ ├── ColumnCommentMigrationTests.kt │ │ ├── DatabaseMigrationTests.kt │ │ ├── GenerateScriptTests.kt │ │ ├── IndexConstraintsTests.kt │ │ ├── MigrationTestsData.kt │ │ └── SequenceAutoIncrementTests.kt │ └── resources/ │ └── logback-test.xml ├── exposed-money/ │ ├── api/ │ │ └── exposed-money.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── money/ │ │ ├── CompositeMoneyColumn.kt │ │ ├── CompositeMoneyColumnType.kt │ │ └── CurrencyColumnType.kt │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── money/ │ ├── MoneyDefaultsTest.kt │ └── MoneyTests.kt ├── exposed-r2dbc/ │ ├── api/ │ │ └── exposed-r2dbc.api │ ├── build.gradle.kts │ └── src/ │ └── main/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── r2dbc/ │ │ ├── ConnectionFactoryOptionsUtils.kt │ │ ├── ExplainSuspendExecutable.kt │ │ ├── ExposedR2dbcException.kt │ │ ├── IterableEx.kt │ │ ├── MetadataQueries.kt │ │ ├── Queries.kt │ │ ├── Query.kt │ │ ├── R2dbcDatabase.kt │ │ ├── R2dbcDatabaseConfig.kt │ │ ├── R2dbcTransaction.kt │ │ ├── SchemaUtils.kt │ │ ├── SetOperations.kt │ │ ├── mappers/ │ │ │ ├── ArrayTypeMapper.kt │ │ │ ├── BinaryTypeMapper.kt │ │ │ ├── DateTimeMySqlTypeMapper.kt │ │ │ ├── DateTimeNullTypeMapper.kt │ │ │ ├── DateTimeOracleTypeMapper.kt │ │ │ ├── DateTimeTypeMapper.kt │ │ │ ├── DefaultTypeMapper.kt │ │ │ ├── ExposedColumnTypeMapper.kt │ │ │ ├── PostgresSpecificTypeMapper.kt │ │ │ ├── PrimitiveTypeMapper.kt │ │ │ ├── R2dbcTypeMapping.kt │ │ │ ├── TypeMapper.kt │ │ │ ├── ValueContainer.kt │ │ │ └── ValueTypeMapper.kt │ │ ├── statements/ │ │ │ ├── BatchInsertSuspendExecutable.kt │ │ │ ├── BatchUpdateSuspendExecutable.kt │ │ │ ├── BatchUpsertSuspendExecutable.kt │ │ │ ├── DeleteSuspendExecutable.kt │ │ │ ├── InsertSelectSuspendExecutable.kt │ │ │ ├── InsertSuspendExecutable.kt │ │ │ ├── MergeSuspendExecutable.kt │ │ │ ├── R2dbcConnectionImpl.kt │ │ │ ├── R2dbcPreparedStatementImpl.kt │ │ │ ├── ReturningSuspendExecutable.kt │ │ │ ├── SuspendExecutable.kt │ │ │ ├── SuspendStatementInterceptor.kt │ │ │ ├── UpdateSuspendExecutable.kt │ │ │ ├── UpsertSuspendExecutable.kt │ │ │ └── api/ │ │ │ ├── R2dbcDatabaseMetadataImpl.kt │ │ │ ├── R2dbcExposedConnection.kt │ │ │ ├── R2dbcExposedDatabaseMetadata.kt │ │ │ ├── R2dbcIdentifierManager.kt │ │ │ ├── R2dbcLocalMetadataImpl.kt │ │ │ ├── R2dbcPreparedStatementApi.kt │ │ │ ├── R2dbcResult.kt │ │ │ └── R2dbcSavepoint.kt │ │ ├── transactions/ │ │ │ ├── R2dbcTransactionDefinition.kt │ │ │ ├── R2dbcTransactionInterface.kt │ │ │ ├── R2dbcTransactionManager.kt │ │ │ ├── TransactionManager.kt │ │ │ └── Transactions.kt │ │ └── vendors/ │ │ ├── DatabaseDialectMetadata.kt │ │ ├── H2DialectMetadata.kt │ │ ├── MariaDBDialectMetadata.kt │ │ ├── MysqlDialectMetadata.kt │ │ ├── OracleDialectMetadata.kt │ │ ├── PostgreSQLDialectMetadata.kt │ │ ├── SQLServerDialectMetadata.kt │ │ └── metadata/ │ │ ├── H2Metadata.kt │ │ ├── MariaDBMetadata.kt │ │ ├── MetadataProvider.kt │ │ ├── MySQLMetadata.kt │ │ ├── OracleMetadata.kt │ │ ├── PostgreSQLMetadata.kt │ │ ├── PropertyProvider.kt │ │ ├── QueryProvider.kt │ │ ├── SQLServerMetadata.kt │ │ └── SqlTypeProvider.kt │ └── resources/ │ └── META-INF/ │ └── services/ │ └── org.jetbrains.exposed.v1.r2dbc.mappers.TypeMapper ├── exposed-r2dbc-tests/ │ ├── .gitignore │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ ├── kotlin/ │ │ │ └── org/ │ │ │ └── jetbrains/ │ │ │ └── exposed/ │ │ │ └── v1/ │ │ │ └── r2dbc/ │ │ │ └── tests/ │ │ │ ├── LogDbInTestName.kt │ │ │ ├── R2dbcDatabaseTestsBase.kt │ │ │ ├── TestDB.kt │ │ │ ├── TestUtils.kt │ │ │ └── shared/ │ │ │ ├── Assert.kt │ │ │ ├── ForeignKeyTables.kt │ │ │ └── MiscTable.kt │ │ └── resources/ │ │ ├── log4j2.xml │ │ └── platform-map.properties │ └── test/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── r2dbc/ │ │ └── sql/ │ │ └── tests/ │ │ ├── crypt/ │ │ │ └── EncryptedColumnTests.kt │ │ ├── demo/ │ │ │ └── sql/ │ │ │ └── SamplesSQL.kt │ │ ├── h2/ │ │ │ ├── ConnectionPoolTests.kt │ │ │ ├── H2Tests.kt │ │ │ └── MultiDatabaseTest.kt │ │ ├── javatime/ │ │ │ ├── DateTimeLiteralTest.kt │ │ │ ├── DefaultsTest.kt │ │ │ ├── JavaTimeTests.kt │ │ │ ├── MiscTableTest.kt │ │ │ └── sqlserver/ │ │ │ └── SQLServerDefaultsTest.kt │ │ ├── jodatime/ │ │ │ ├── JodaDateTimeLiteralTest.kt │ │ │ ├── JodaTimeDefaultsTest.kt │ │ │ ├── JodaTimeMiscTableTest.kt │ │ │ └── JodaTimeTests.kt │ │ ├── json/ │ │ │ ├── JsonBColumnTests.kt │ │ │ ├── JsonColumnTests.kt │ │ │ └── JsonTestsData.kt │ │ ├── kotlindatetime/ │ │ │ ├── DateTimeLiteralTest.kt │ │ │ ├── DefaultsTest.kt │ │ │ ├── KotlinTimeTests.kt │ │ │ ├── MiscTableTest.kt │ │ │ └── sqlserver/ │ │ │ └── SQLServerDefaultsTest.kt │ │ ├── money/ │ │ │ └── MoneyTests.kt │ │ ├── mysql/ │ │ │ └── MysqlTests.kt │ │ ├── oracle/ │ │ │ └── OracleTests.kt │ │ ├── postgresql/ │ │ │ ├── ConnectionPoolTests.kt │ │ │ └── PostgresqlTests.kt │ │ └── shared/ │ │ ├── AliasesTests.kt │ │ ├── ConnectionExceptions.kt │ │ ├── ConnectionTests.kt │ │ ├── ConnectionTimeoutTest.kt │ │ ├── CoroutineTests.kt │ │ ├── CustomTransactionManagerTest.kt │ │ ├── DDLTests.kt │ │ ├── NestedTransactionsTest.kt │ │ ├── ParameterizationTests.kt │ │ ├── QueryTimeoutTest.kt │ │ ├── ReadOnlyTests.kt │ │ ├── RollbackTransactionTest.kt │ │ ├── SchemaTests.kt │ │ ├── StatementInterceptorTests.kt │ │ ├── TransactionCoroutineContextTests.kt │ │ ├── TransactionExecTests.kt │ │ ├── TransactionIsolationTest.kt │ │ ├── TransactionStackCorruptionTest.kt │ │ ├── UserCreatedTransactionsTests.kt │ │ ├── ddl/ │ │ │ ├── ColumnCommentTests.kt │ │ │ ├── ColumnDefinitionTests.kt │ │ │ ├── CreateDatabaseTest.kt │ │ │ ├── CreateIndexTests.kt │ │ │ ├── CreateMissingTablesAndColumnsTests.kt │ │ │ ├── CreateTableTests.kt │ │ │ ├── EnumerationTests.kt │ │ │ ├── ReplaceColumnTests.kt │ │ │ ├── SequencesTests.kt │ │ │ └── WhereConditionsTests.kt │ │ ├── dml/ │ │ │ ├── AdjustQueryTests.kt │ │ │ ├── ArithmeticTests.kt │ │ │ ├── ColumnCaseSensitivityTests.kt │ │ │ ├── ColumnWithTransformTest.kt │ │ │ ├── ConditionsTests.kt │ │ │ ├── CountTests.kt │ │ │ ├── DMLTestsData.kt │ │ │ ├── DeleteTests.kt │ │ │ ├── DistinctOnTests.kt │ │ │ ├── DualTableTest.kt │ │ │ ├── ExistsTests.kt │ │ │ ├── ExplainTests.kt │ │ │ ├── FetchBatchedResultsTests.kt │ │ │ ├── GroupByTests.kt │ │ │ ├── InsertSelectTests.kt │ │ │ ├── InsertTests.kt │ │ │ ├── JoinTests.kt │ │ │ ├── LateralJoinTests.kt │ │ │ ├── LikeTests.kt │ │ │ ├── MergeBaseTest.kt │ │ │ ├── MergeSelectTest.kt │ │ │ ├── MergeTableTest.kt │ │ │ ├── OrderByTests.kt │ │ │ ├── ReplaceTests.kt │ │ │ ├── ReturningTests.kt │ │ │ ├── SelectTests.kt │ │ │ ├── UnionTests.kt │ │ │ ├── UpdateTests.kt │ │ │ └── UpsertTests.kt │ │ ├── entities/ │ │ │ └── EntityTests.kt │ │ ├── functions/ │ │ │ ├── FunctionsTestBase.kt │ │ │ ├── FunctionsTests.kt │ │ │ ├── MathFunctionTests.kt │ │ │ ├── StatisticsFunctionTests.kt │ │ │ ├── TrigonometricalFunctionTests.kt │ │ │ └── WindowFunctionsTests.kt │ │ └── types/ │ │ ├── ArrayColumnTypeTests.kt │ │ ├── BlobColumnTypeTests.kt │ │ ├── BooleanColumnTypeTests.kt │ │ ├── CharColumnType.kt │ │ ├── DoubleColumnTypeTests.kt │ │ ├── JavaUUIDColumnTypeTests.kt │ │ ├── NumericColumnTypesTests.kt │ │ ├── UnsignedColumnTypeTests.kt │ │ └── UuidColumnTypeTests.kt │ └── resources/ │ └── logback-test.xml ├── exposed-spring-boot-starter/ │ ├── api/ │ │ └── exposed-spring-boot-starter.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ ├── kotlin/ │ │ │ └── org/ │ │ │ └── jetbrains/ │ │ │ └── exposed/ │ │ │ └── v1/ │ │ │ └── spring/ │ │ │ └── boot/ │ │ │ ├── DatabaseInitializer.kt │ │ │ ├── ExposedAotContribution.kt │ │ │ └── autoconfigure/ │ │ │ └── ExposedAutoConfiguration.kt │ │ └── resources/ │ │ └── META-INF/ │ │ ├── spring/ │ │ │ ├── aot.factories │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── spring-configuration-metadata.json │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── spring/ │ └── boot/ │ ├── Application.kt │ ├── DatabaseInitializerTest.kt │ ├── autoconfigure/ │ │ └── ExposedAutoConfigurationTest.kt │ ├── jdbc_template/ │ │ ├── AuthorTable.kt │ │ ├── BookService.kt │ │ ├── JdbcConfiguration.kt │ │ └── JdbcTemplateTests.kt │ └── tables/ │ ├── NonObjectTable.kt │ ├── TestTable.kt │ └── ignore/ │ └── IgnoreTable.kt ├── exposed-spring-boot4-starter/ │ ├── api/ │ │ └── exposed-spring-boot4-starter.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ ├── kotlin/ │ │ │ └── org/ │ │ │ └── jetbrains/ │ │ │ └── exposed/ │ │ │ └── v1/ │ │ │ └── spring/ │ │ │ └── boot4/ │ │ │ ├── DatabaseInitializer.kt │ │ │ ├── ExposedAotContribution.kt │ │ │ └── autoconfigure/ │ │ │ └── ExposedAutoConfiguration.kt │ │ └── resources/ │ │ └── META-INF/ │ │ ├── spring/ │ │ │ ├── aot.factories │ │ │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports │ │ └── spring-configuration-metadata.json │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── spring/ │ └── boot4/ │ ├── Application.kt │ ├── DatabaseInitializerTest.kt │ ├── autoconfigure/ │ │ └── ExposedAutoConfigurationTest.kt │ ├── jdbc_template/ │ │ ├── AuthorTable.kt │ │ ├── BookService.kt │ │ ├── JdbcConfiguration.kt │ │ └── JdbcTemplateTests.kt │ └── tables/ │ ├── NonObjectTable.kt │ ├── TestTable.kt │ └── ignore/ │ └── IgnoreTable.kt ├── exposed-tests/ │ ├── .gitignore │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ ├── kotlin/ │ │ │ └── org/ │ │ │ └── jetbrains/ │ │ │ └── exposed/ │ │ │ └── v1/ │ │ │ └── tests/ │ │ │ ├── DatabaseTestsBase.kt │ │ │ ├── LogDbInTestName.kt │ │ │ ├── TestDB.kt │ │ │ ├── TestUtils.kt │ │ │ └── shared/ │ │ │ ├── Assert.kt │ │ │ ├── ForeignKeyTables.kt │ │ │ └── MiscTable.kt │ │ └── resources/ │ │ ├── log4j2.xml │ │ └── platform-map.properties │ └── test/ │ ├── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── tests/ │ │ ├── VersionTests.kt │ │ ├── demo/ │ │ │ ├── dao/ │ │ │ │ └── SamplesDao.kt │ │ │ └── sql/ │ │ │ └── SamplesSQL.kt │ │ ├── h2/ │ │ │ ├── ConnectionPoolTests.kt │ │ │ ├── EntityReferenceCacheTest.kt │ │ │ ├── H2Tests.kt │ │ │ ├── MultiDatabaseEntityTest.kt │ │ │ └── MultiDatabaseTest.kt │ │ ├── mysql/ │ │ │ └── MysqlTests.kt │ │ ├── oracle/ │ │ │ └── OracleTests.kt │ │ ├── postgresql/ │ │ │ ├── ConnectionPoolTests.kt │ │ │ └── PostgresqlTests.kt │ │ ├── shared/ │ │ │ ├── AliasesTests.kt │ │ │ ├── ConnectionExceptions.kt │ │ │ ├── ConnectionTests.kt │ │ │ ├── ConnectionTimeoutTest.kt │ │ │ ├── CoroutineTests.kt │ │ │ ├── CustomTransactionManagerTest.kt │ │ │ ├── DDLTests.kt │ │ │ ├── DataSourceStub.kt │ │ │ ├── NestedTransactionsTest.kt │ │ │ ├── ParameterizationTests.kt │ │ │ ├── QueryTimeoutTest.kt │ │ │ ├── RollbackTransactionTest.kt │ │ │ ├── SchemaTests.kt │ │ │ ├── StatementInterceptorTests.kt │ │ │ ├── SuspendTransactionTests.kt │ │ │ ├── ThreadLocalManagerTest.kt │ │ │ ├── TransactionCoroutineContextTests.kt │ │ │ ├── TransactionExecTests.kt │ │ │ ├── TransactionIsolationTest.kt │ │ │ ├── TransactionStackCorruptionTest.kt │ │ │ ├── UserCreatedTransactionsTests.kt │ │ │ ├── ddl/ │ │ │ │ ├── ColumnCommentTests.kt │ │ │ │ ├── ColumnDefinitionTests.kt │ │ │ │ ├── CreateDatabaseTest.kt │ │ │ │ ├── CreateIndexTests.kt │ │ │ │ ├── CreateMissingTablesAndColumnsTests.kt │ │ │ │ ├── CreateTableTests.kt │ │ │ │ ├── EnumerationTests.kt │ │ │ │ ├── ReplaceColumnTests.kt │ │ │ │ ├── SequencesTests.kt │ │ │ │ └── WhereConditionsTests.kt │ │ │ ├── dml/ │ │ │ │ ├── AdjustQueryTests.kt │ │ │ │ ├── ArithmeticTests.kt │ │ │ │ ├── ColumnCaseSensitivityTests.kt │ │ │ │ ├── ColumnWithTransformTest.kt │ │ │ │ ├── ConditionsTests.kt │ │ │ │ ├── CountTests.kt │ │ │ │ ├── DMLTestData.kt │ │ │ │ ├── DeleteTests.kt │ │ │ │ ├── DistinctOnTests.kt │ │ │ │ ├── DualTableTest.kt │ │ │ │ ├── ExistsTests.kt │ │ │ │ ├── ExplainTests.kt │ │ │ │ ├── FetchBatchedResultsTests.kt │ │ │ │ ├── GroupByTests.kt │ │ │ │ ├── InsertSelectTests.kt │ │ │ │ ├── InsertTests.kt │ │ │ │ ├── JoinTests.kt │ │ │ │ ├── LateralJoinTests.kt │ │ │ │ ├── LikeTests.kt │ │ │ │ ├── MergeBaseTest.kt │ │ │ │ ├── MergeSelectTest.kt │ │ │ │ ├── MergeTableTest.kt │ │ │ │ ├── OrderByTests.kt │ │ │ │ ├── ReplaceTests.kt │ │ │ │ ├── ReturningTests.kt │ │ │ │ ├── SelectTests.kt │ │ │ │ ├── UnionTests.kt │ │ │ │ ├── UpdateTests.kt │ │ │ │ └── UpsertTests.kt │ │ │ ├── entities/ │ │ │ │ ├── CompositeIdTableEntityTest.kt │ │ │ │ ├── EntityBugsRegressionTest.kt │ │ │ │ ├── EntityCacheRefreshTests.kt │ │ │ │ ├── EntityCacheTests.kt │ │ │ │ ├── EntityFieldWithTransformTest.kt │ │ │ │ ├── EntityHookTest.kt │ │ │ │ ├── EntityTests.kt │ │ │ │ ├── EntityWithBlobTests.kt │ │ │ │ ├── ForeignIdEntityTest.kt │ │ │ │ ├── ImmutableEntityTest.kt │ │ │ │ ├── JavaUUIDTableEntityTest.kt │ │ │ │ ├── LongIdTableEntityTest.kt │ │ │ │ ├── NonAutoIncEntities.kt │ │ │ │ ├── OrderedReferenceTest.kt │ │ │ │ ├── SelfReferenceTest.kt │ │ │ │ ├── UIntIdTableEntityTest.kt │ │ │ │ ├── ULongIdTableEntityTest.kt │ │ │ │ ├── UuidTableEntityTest.kt │ │ │ │ ├── ViaTest.kt │ │ │ │ └── WarmUpLinkedReferencesTests.kt │ │ │ ├── functions/ │ │ │ │ ├── FunctionsTestBase.kt │ │ │ │ ├── FunctionsTests.kt │ │ │ │ ├── MathFunctionTests.kt │ │ │ │ ├── StatisticsFunctionTests.kt │ │ │ │ ├── TrigonometricalFunctionTests.kt │ │ │ │ └── WindowFunctionsTests.kt │ │ │ └── types/ │ │ │ ├── ArrayColumnTypeTests.kt │ │ │ ├── BlobColumnTypeTests.kt │ │ │ ├── BooleanColumnTypeTests.kt │ │ │ ├── CharColumnType.kt │ │ │ ├── DoubleColumnTypeTests.kt │ │ │ ├── JavaUUIDColumnTypeTests.kt │ │ │ ├── MultiArrayColumnTypeTests.kt │ │ │ ├── NumericColumnTypesTests.kt │ │ │ ├── UnsignedColumnTypeTests.kt │ │ │ └── UuidColumnTypeTests.kt │ │ └── sqlite/ │ │ ├── ForeignKeyConstraintTests.kt │ │ └── MultipleDatabaseBugTest.kt │ └── resources/ │ └── logback-test.xml ├── gradle/ │ ├── libs.versions.toml │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties ├── gradlew ├── gradlew.bat ├── samples/ │ ├── README.md │ ├── exposed-ktor/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle.kts │ │ └── src/ │ │ └── main/ │ │ ├── kotlin/ │ │ │ ├── Application.kt │ │ │ └── plugins/ │ │ │ ├── Databases.kt │ │ │ ├── Serialization.kt │ │ │ └── UsersSchema.kt │ │ └── resources/ │ │ ├── application.yaml │ │ └── logback.xml │ ├── exposed-ktor-r2dbc/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── docker-compose.yml │ │ ├── endpoints.http │ │ ├── gradle/ │ │ │ ├── libs.versions.toml │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle.kts │ │ └── src/ │ │ └── main/ │ │ ├── kotlin/ │ │ │ ├── Application.kt │ │ │ ├── domain/ │ │ │ │ ├── BaseRepository.kt │ │ │ │ ├── comment/ │ │ │ │ │ ├── Comment.kt │ │ │ │ │ ├── CommentRepository.kt │ │ │ │ │ ├── CommentRoutes.kt │ │ │ │ │ ├── CommentService.kt │ │ │ │ │ └── CommentsTable.kt │ │ │ │ ├── issue/ │ │ │ │ │ ├── Issue.kt │ │ │ │ │ ├── IssueRepository.kt │ │ │ │ │ ├── IssueRoutes.kt │ │ │ │ │ ├── IssueService.kt │ │ │ │ │ └── IssuesTable.kt │ │ │ │ ├── project/ │ │ │ │ │ ├── Project.kt │ │ │ │ │ ├── ProjectRepository.kt │ │ │ │ │ ├── ProjectRoutes.kt │ │ │ │ │ ├── ProjectService.kt │ │ │ │ │ └── ProjectsTable.kt │ │ │ │ └── user/ │ │ │ │ ├── User.kt │ │ │ │ ├── UserRepository.kt │ │ │ │ ├── UserRoutes.kt │ │ │ │ ├── UserService.kt │ │ │ │ └── UsersTable.kt │ │ │ └── plugins/ │ │ │ ├── Database.kt │ │ │ ├── Monitoring.kt │ │ │ ├── Routing.kt │ │ │ └── Serialization.kt │ │ └── resources/ │ │ ├── application.yaml │ │ └── logback.xml │ ├── exposed-migration/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.gradle.kts │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle.kts │ │ └── src/ │ │ └── main/ │ │ └── kotlin/ │ │ ├── Application.kt │ │ ├── GenerateMigrationScript.kt │ │ └── Tables.kt │ └── exposed-spring/ │ ├── .gitignore │ ├── README.md │ ├── build.gradle.kts │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── src/ │ └── main/ │ ├── kotlin/ │ │ ├── SpringApplication.kt │ │ ├── controller/ │ │ │ └── UserController.kt │ │ ├── domain/ │ │ │ ├── User.kt │ │ │ └── UserEntity.kt │ │ ├── service/ │ │ │ └── UserService.kt │ │ └── support/ │ │ └── SchemaInitialize.kt │ └── resources/ │ └── application.properties ├── settings.gradle.kts ├── spring-transaction/ │ ├── api/ │ │ └── spring-transaction.api │ ├── build.gradle.kts │ └── src/ │ ├── main/ │ │ └── kotlin/ │ │ └── org/ │ │ └── jetbrains/ │ │ └── exposed/ │ │ └── v1/ │ │ └── spring/ │ │ └── transaction/ │ │ ├── ExposedSpringTransactionAttributeSource.kt │ │ └── SpringTransactionManager.kt │ └── test/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── spring/ │ └── transaction/ │ ├── ConnectionSpy.kt │ ├── DataSourceSpy.kt │ ├── EntityUpdateTest.kt │ ├── ExposedTransactionManagerTest.kt │ ├── JdbcExposedTransactionManagerTest.kt │ ├── MixedExposedJdbcTransactionTest.kt │ ├── SpringCoroutineTest.kt │ ├── SpringMultiContainerTransactionTest.kt │ ├── SpringTransactionEntityTest.kt │ ├── SpringTransactionManagerTest.kt │ ├── SpringTransactionRollbackTest.kt │ ├── SpringTransactionSingleConnectionTest.kt │ ├── SpringTransactionTestBase.kt │ └── TransactionSynchronizationTest.kt └── spring7-transaction/ ├── api/ │ └── spring7-transaction.api ├── build.gradle.kts └── src/ ├── main/ │ └── kotlin/ │ └── org/ │ └── jetbrains/ │ └── exposed/ │ └── v1/ │ └── spring7/ │ └── transaction/ │ ├── ExposedSpringTransactionAttributeSource.kt │ └── SpringTransactionManager.kt └── test/ └── kotlin/ └── org/ └── jetbrains/ └── exposed/ └── v1/ └── spring7/ └── transaction/ ├── ConnectionSpy.kt ├── DataSourceSpy.kt ├── EntityUpdateTest.kt ├── ExposedTransactionManagerTest.kt ├── JdbcExposedTransactionManagerTest.kt ├── MixedExposedJdbcTransactionTest.kt ├── SpringCoroutineTest.kt ├── SpringMultiContainerTransactionTest.kt ├── SpringTransactionEntityTest.kt ├── SpringTransactionManagerTest.kt ├── SpringTransactionRollbackTest.kt ├── SpringTransactionSingleConnectionTest.kt ├── SpringTransactionTestBase.kt └── TransactionSynchronizationTest.kt