Will Droste
Will Droste
## Expected Behavior (Mandatory) For parallel often times there's only 4 CPU or if there's 50 CPU its just too many threads. I would expect a default of 4. apoc.iterate('delete...
It would be nice to be able to publish snapshots to a local repository for testing w/ other libraries or applications.
Fixes for documentation and hibernate when I checked out the latest its complete broken.
WARN: GenerationTarget encountered exception accepting command : Error executing DDL via JDBC Statement org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL via JDBC Statement at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:67) at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:524) at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:470) at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applyForeignKeys(AbstractSchemaMigrator.java:429) at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:245)...
CREATE DATABASE IF NOT EXISTS company_{language}_{ORM}; It uses the database company_hibernate.. Sep 21, 2017 4:40:15 PM org.hibernate.tool.schema.internal.ExceptionHandlerLoggedImpl handleException WARN: GenerationTarget encountered exception accepting command : Error executing DDL via JDBC...
Example should work against 1.0 CockroachDB node starting at 2017-09-21 14:26:59.087913381 -0500 CDT build: CCL v1.0.5 @ 2017/08/24 17:43:46 (go1.8.3) admin: http://jackburton:2800 sql: postgresql://root@jackburton:26257?sslmode=disable logs: /home/wdroste/tmp/cockroach-data/logs store[0]: path=/home/wdroste/tmp/cockroach-data status: initialized...
There needs to a common after the DECIMAL declaration. root@:26257/company_java_hibernate> CREATE TABLE IF NOT EXISTS orders ( -> id SERIAL PRIMARY KEY, -> subtotal DECIMAL(18,2) -> customer_id INT REFERENCES customers(id),...
For instance ``` new RuntimeException( "Switch space `" + config.getSpaceName() + "' failed: " + resultSet.getErrorMessage()); ``` If this was a NoSpaceFoundException it would be easier to test. Frequently we'd...
Its great to have **checkstyle** for a community project its even better if the build can format the code to the standard. My suggestion would be to use **spotless** https://github.com/diffplug/spotless/tree/main/plugin-maven
Current format: yyyy-MM-dd'T'HH:mm:ss.sss Correct format: yyyy-MM-dd'T'HH:mm:ss.SSS The 'S' is fraction of a second.