3e955b3f73
* Only keep JRE 8 and 14 in the build matrix. For #3377. * Run tests in GitHub Actions on each PR * Attempt to fix Postgres configuration * Set explicit password for Postgres on GitHub Actions * Set explicit password for MySQL and MariaDB * Fix credentials for postgres and mysql * Fix duplicate id in GitHub workflow * Fix creation of test_db on MySQL * Revert back to GH Action MySQL service * Populate initial test databases * Fix syntax of workflow file * Reorder steps to give more time for MySQL to boot * Run MySQL database as a service, forward ports to config * Reformat MySQL options * Fix YAML syntax * Add missing 'steps' field * Fix connection to MySQL and Postgres * Add back explicit database creation steps * Force TCP/IP connection for postgres * Remove explicit creation of test database for postgres * Fix Postgres and Mariadb configs * Fix parameter spelling for mariadb * Display MariaDB test configuration * Fix more inconsistent parameter names * Fix more inconsistent parameter names * Attempt to use Coveralls maven plugin instead of GH action * Fix workflow file * Enable submission to coveralls * Supply coveralls token * Remove Travis-specific configuration files * Also update appveyor script after rename of SQL files * Reintroduce packaging/test_pom.xml used by Appveyor * Update filenames in appveyor.yml
18 lines
667 B
SQL
18 lines
667 B
SQL
CREATE DATABASE IF NOT EXISTS `test_db` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
|
|
USE test_db;
|
|
|
|
CREATE TABLE IF NOT EXISTS `test_table` (
|
|
`id` int(11) NOT NULL,
|
|
`ue_id` char(8) NOT NULL,
|
|
`start_time` timestamp NOT NULL,
|
|
`end_date` date DEFAULT NULL,
|
|
`bytes_upload` int(11) NOT NULL,
|
|
`bytes_download` int(11) NOT NULL,
|
|
`mcc` char(3) DEFAULT NULL,
|
|
`mnc` char(3) NOT NULL,
|
|
`lac` varchar(11) DEFAULT NULL,
|
|
`imei` char(16) NOT NULL
|
|
);
|
|
|
|
INSERT INTO test_table(id, ue_id, start_time, end_date, bytes_upload, bytes_download, mcc, mnc, lac, imei)
|
|
VALUES (1, '11100022', now(), now(), 1024, 2048, 321, 543, 12209823498, 1344498988877487); |