All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.junitbenchmarks.mysql.001-create-tests.sql Maven / Gradle / Ivy

Go to download

A framework for writing performance micro-benchmarks using JUnit4 annotations, forked from https://github.com/carrotsearch/junit-benchmarks.

There is a newer version: 0.7.4-scijava
Show newest version

CREATE TABLE IF NOT EXISTS TESTS
(
    ID          INT AUTO_INCREMENT PRIMARY KEY,

    RUN_ID      INT REFERENCES RUNS(ID),

    CLASSNAME   VARCHAR(500) NOT NULL,
    NAME        VARCHAR(500) NOT NULL,

    BENCHMARK_ROUNDS INT NOT NULL,
    WARMUP_ROUNDS    INT NOT NULL,
    
    ROUND_AVG        DOUBLE NOT NULL,
    ROUND_STDDEV     DOUBLE NOT NULL,

    GC_AVG        DOUBLE NOT NULL,
    GC_STDDEV     DOUBLE NOT NULL,

    GC_INVOCATIONS    INT NOT NULL,
    GC_TIME       DOUBLE NOT NULL,

    TIME_BENCHMARK       DOUBLE NOT NULL,
    TIME_WARMUP     DOUBLE NOT NULL
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy