Skip to content

Commit

Permalink
Merge pull request #403 from Drill4J/fix/methods-table-increase-varch…
Browse files Browse the repository at this point in the history
…ar-limit

fix: increase varchar field limit for raw_data.methods columns
  • Loading branch information
RomanDavlyatshin authored Nov 28, 2024
2 parents d3fe1d3 + 7411fa5 commit dbedb35
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ object MethodTable : StringIdTable("raw_data.methods") {
val params = varchar("params", LONG_TEXT_LENGTH) // logically, it could be longer
val returnType = varchar("return_type", LONG_TEXT_LENGTH)
val bodyChecksum = varchar("body_checksum", SHORT_TEXT_LENGTH) // crc64 stringified hash
var signature = varchar("signature", MEDIUM_TEXT_LENGTH)
var signature = varchar("signature", LONG_TEXT_LENGTH)
val probesCount = integer("probes_count")
val probesStartPos = integer("probe_start_pos")
val annotations = varchar("annotations", MEDIUM_TEXT_LENGTH).nullable()
val classAnnotations = varchar("class_annotations", MEDIUM_TEXT_LENGTH).nullable()
}
val annotations = varchar("annotations", LONG_TEXT_LENGTH).nullable()
val classAnnotations = varchar("class_annotations", LONG_TEXT_LENGTH).nullable()
}

0 comments on commit dbedb35

Please sign in to comment.