Matthew Moisen
Matthew Moisen
### Describe the bug If the ORM model uses different column names than the Database: first_name = Column(String(30), name='firstname') Using the 2.0 style `insert()` will fail when `values()` is passed...
**PyKafka Version** 2.8.0 on Linux **librdkafka Version** librdkafka1-1.1.0_confluent5.3.1-1.el7.x86_64 on Linux **Kafka Version** 2.12-2.3.0 on Windows or Linux Using `topic.get_simple_consumer(use_rdkafka=True)` results in the following error: pykafka.exceptions.RdKafkaException: Configuration property "queued.max.messages.kbytes" value 102400000...
Installing PyKafka via `pip install pykafka` results in the compilation of a `tests` module inside of `site-packages`. I confirmed this on both Windows and Linux with Python 3.6.5. > ls...
It seems that there are several characters over at HanziCraft that do not have any High Frequency words, but only Medium Frequency words. For example, the page for [幌](http://www.hanzicraft.com/character/%E5%B9%8C) states...
### Describe the bug mysqlclient is raising OperationalError instead of IntegrityError for all constraint violations, such as not null, unique, foreign key, and check. This is a bug because it...
The following INSERT statement from a subquery (instead of values): insert_from_query = '''insert into foo (a, b, c) select d, e, f from bar''' print(sqlparse.format(insert_from_query, reindent=True)) Produces: insert into foo...
I noticed an odd bug when Converting an `` tag containing: - A hyphen in the src - A src longer than 74 characters Converting a `` tag with a...
**Describe the bug** It does not seem possible to add an`on:click` to an `Icon` belonging to a `Textfield`. Clicking on the `Icon` doesn't do anything. **To Reproduce** Steps to reproduce...
Description =========== Building librdkafka from source on either OracleLinux or AmazonLinux is failing. It works fine on RHEL (UBI) but not on the derivative distributions OracleLinux or AmazonLinux. How to...
``` r_foo_type = conn.gettype('HELLO.XXTEST_TEST_PKG.R_FOO') r_foo_obj = r_foo_type.newobject() # This takes 0.2 seconds from my local host to a remote database r_foo_obj.BAR = 'a' # This takes another 0.2 seconds r_foo_obj.BAZ...