enable benchmarks
commit25d6204b10a64c25576e37824ae98de02d53af0e
authorSebastian Hoß <sebhoss@pm.me>
Sun, 21 Mar 2021 20:49:55 +0000 (21 21:49 +0100)
committerSebastian Hoß <sebhoss@pm.me>
Sun, 21 Mar 2021 20:49:55 +0000 (21 21:49 +0100)
tree6d75f0cf3b7edeb593bc6930a8b5d1d09a437827
parent48fca362e37b35eaabf6746c4946aef060fb4db2
enable benchmarks
43 files changed:
.github/workflows/main.yml [new file with mode: 0644]
.github/workflows/pull-requests.yml [moved from .github/workflows/verify.yml with 95% similarity]
.github/workflows/website.yml [deleted file]
yosql-benchmarks/yosql-benchmarks-codegen/pom.xml
yosql-benchmarks/yosql-benchmarks-codegen/src/main/java/wtf/metio/yosql/benchmark/codegen/AbstractMediumSampleBenchmark.java
yosql-benchmarks/yosql-benchmarks-codegen/src/main/java/wtf/metio/yosql/benchmark/codegen/AbstractSmallSampleBenchmark.java
yosql-benchmarks/yosql-benchmarks-jdbc/pom.xml [copied from yosql-benchmarks/yosql-benchmarks-codegen/pom.xml with 63% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/java/wtf/metio/yosql/benchmark/jdbc/AbstractBenchmark.java [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/java/wtf/metio/yosql/benchmark/jdbc/JdbcReadBenchmarks.java [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 57% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/java/wtf/metio/yosql/benchmark/jdbc/JdbcSchemaBenchmarks.java [copied from yosql-verification/yosql-verification-yeps/src/test/java/wtf/metio/yosql/setup/Schemata.java with 50% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/java/wtf/metio/yosql/benchmark/jdbc/JdbcWriteBenchmarks.java [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 54% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/company/findCompanies.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 71% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/company/findCompanyByName.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/company/insertCompany.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 70% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/company/queryAllCompanies.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/item/callItem.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/item/findItem.sql [new file with mode: 0644]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/person/findPerson.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 53% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/schema/createCompaniesTable.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 77% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/schema/createItemsTable.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 77% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/schema/createPersonsTable.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 75% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/schema/dropCompaniesTable.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/schema/dropItemsTable.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/schema/dropPersonsTable.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 78% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/user/queryAllUsers.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/user/queryInAnotherRepository.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/user/querySingleUser.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 68% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/user/querySpecialUser.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/user/queryWithoutFrontMatter.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/user/updateUser.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 70% similarity]
yosql-benchmarks/yosql-benchmarks-jdbc/src/main/yosql/user/updateUserStatic.sql [copied from yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql with 73% similarity]
yosql-codegen/yosql-codegen-files/src/main/java/wtf/metio/yosql/codegen/files/DefaultSqlConfigurationFactory.java
yosql-codegen/yosql-codegen-files/src/test/java/wtf/metio/yosql/codegen/files/DefaultSqlConfigurationFactoryTest.java
yosql-examples/yosql-examples-maven/pom.xml
yosql-examples/yosql-examples-maven/yosql-examples-maven-jdbc-java16/pom.xml
yosql-models/yosql-models-generator/src/main/java/wtf/metio/yosql/internals/model/generator/api/Generator.java
yosql-models/yosql-models-meta/src/main/java/wtf/metio/yosql/models/meta/data/Repositories.java
yosql-models/yosql-models-meta/src/main/java/wtf/metio/yosql/models/meta/data/Sql.java
yosql-verification/yosql-verification-yeps/src/test/java/wtf/metio/yosql/setup/Schemata.java
yosql-verification/yosql-verification-yeps/src/test/yosql/ALL/schema/schema.sql
yosql-website/content/persistence/_index.md
yosql-website/content/persistence/benchmarks/2021/yosql-benchmarks-codegen.json [new file with mode: 0644]
yosql-website/content/persistence/benchmarks/current/.gitignore [new file with mode: 0644]