Vlad

Results 6 issues of Vlad

Having multiple primary keys is common for production database tables, and the tool needs to also support this. The proposal is to change the object generation so that the primary...

enhancement
core

**Describe the bug** When a datetime is stored as a string column (e.g. `varchar(10`) then the insertion to Postgres fails with the cryptic message: `invalid byte sequence for encoding "utf8":...

bug

**Describe the bug** When inserting into (currently only tested with PostgreSQL) column that defines a custom decimal precision, e.g. `decimal(7, 2)`, generated floats should "fit" into the column when defined...

bug

It is currently not possible to generate a numeric string and then convert it to a number. Sample use-case: generating a date-time and using that to calculate the week number...

Currently, string formatter can: * concatenate strings * reference component strings from other fields via `same_as` * truncate component string lengths via `truncate` This is a good start but not...

enhancement
help wanted

A typical representation of enums (in Scala 2) is the following: ```scala sealed trait Status case object Succeeded extends Status case object Failed extends Status case object Unknown extends Status...