Skip to content

Commit

Permalink
Merge pull request #532 from dtsuzuku-ibm/increase-max-length-class-p…
Browse files Browse the repository at this point in the history
…ath-cache

increase the max length of varchar column of ClassPathCacheEntry table
  • Loading branch information
fwcd authored Jan 19, 2024
2 parents b74bb71 + d499d34 commit 5f12bbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import org.jetbrains.exposed.sql.transactions.transaction
import java.nio.file.Path
import java.nio.file.Paths

private const val MAX_PATH_LENGTH = 255
private const val MAX_PATH_LENGTH = 2047

private object ClassPathMetadataCache : IntIdTable() {
val includesSources = bool("includessources")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class DatabaseMetadataEntity(id: EntityID<Int>) : IntEntity(id) {
class DatabaseService {

companion object {
const val DB_VERSION = 3
const val DB_VERSION = 4
const val DB_FILENAME = "kls_database.db"
}

Expand Down

0 comments on commit 5f12bbf

Please sign in to comment.