Andy Grunwald
Andy Grunwald
**What type of PR is this?** bug **What this PR does / why we need it**: Imagine we have this CSV file (called `nutrient.csv`, from the https://fdc.nal.usda.gov/download-datasets.html // Supporting data...
**What happened**: Consider a CSV like ```csv Ingredient code,SR description,Nutrient code,Nutrient value,Nutrient value source,Derivation code,SR AddMod year,Start date,End date,,, 1001,"Butter, salted",203,0.85,SR Legacy,,1976,1/1/2017 0:00,12/31/2018 0:00,,, 1001,"Butter, salted",204,81.11,SR Legacy,,1976,1/1/2017 0:00,12/31/2018 0:00,,, ```...
**What would you like to be added**: Row-Inserts are done via (bulk) inserts right now. For bigger imports, MySQL provides a `LOAD DATA` command. See [13.2.7 LOAD DATA Statement @...
**What would you like to be added**: When csv2db creates a schema, every column is created as `VARCHAR(1000)`. This default type can be changed by using ``` -c COLUMN_TYPE, --column-type...
Is there a good way to execute all unit tests? The only way I found was ``` cd test/python export PYTHONPATH=../../src/python python3 functional_tests.py ``` but this feels wrong and executes...
[`example_client_test.go`](https://github.com/rabbitmq/amqp091-go/blob/main/example_client_test.go) shows a great way how to build a Producer with reconnection support. The Consuming part is not covering the reconnection support: https://github.com/rabbitmq/amqp091-go/blob/51fade522e4d209b3cef22ff8c052d944524ac17/example_client_test.go#L257-L274 Even if [reconnection support](https://github.com/rabbitmq/amqp091-go/blob/main/README.md#non-goals) is mentioned as...
## Expected Behavior All database queries are using native prepared statements by the [PDO MySQL extension/functionality of PHP](https://secure.php.net/manual/en/ref.pdo-mysql.php). ## Current Behavior LanSuite uses a "kind of" prepared statements, but with...
This PR replaces TravisCI with GitHub Actions. ### Why? - TravisCI itself is moving more and more away from open source support after an acquisition, see https://news.ycombinator.com/item?id=25338983 - GitHub Actions...
Hey, we the LANSuite-Team want to get in contact with the users who are using the LANSuite CMS. If you are using LANSuite for your LAN Party, let us know....
According to [PHP: Supported Versions](https://secure.php.net/supported-versions.php) our current supported PHP Version 7.0 has only Security Support Until 3 Dec 2018. Questions: 1. Should we drop support for PHP 7.0, because it...