Michael Hopstock

Results 4 issues of Michael Hopstock

in `VertxGenerator`, you have a fix for Enum default values, which (for me) is broken. It generates: ```java public final TableField MY_COLUMN = createField("my_column", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(my.package.jooq.enums.CustomEnum.class).defaultValue(my.package.jooq.enums.CustomEnum.'DEFAULT_COLUMN_ENUM_VALUE'::schema.custom_enum), this, ""); ``` A proper...

Based on [this](https://github.com/vert-x3/vertx-examples/blob/master/jdbc-examples/src/main/java/io/vertx/example/jdbc/transaction_rollback/JDBCExample.java), I've created the following helper and extended the async executor to support transactions. It's not nice (because one part is in the queryexecutor (java) and one part...

Thx for this awesome project! This was the code which threw the error: ```python def get_types(): class Type(object): def __init__(self, name, slug): self.name = name self.slug = slug return [Type(type_,type_.lower())...

enhancement

your pika requirement in the setup.py is quite old. using pipenv with a newer version of pika complains about it, because I manually have pika in it w/ the newest...