getodk / aggregate

ODK Aggregate is a Java server that stores, analyzes, and presents survey data collected using ODK Collect. Contribute and make the world a better place! ✨🗄✨
https://docs.opendatakit.org/aggregate-intro/
Other
74 stars 228 forks source link

Weird spacing in the create_db_and_user.sql #434

Open yanokwa opened 5 years ago

yanokwa commented 5 years ago

Software and hardware versions

Master

Problem description

The installer generates a MySQL file that has weird spacing

create database `aggregate`;
        create user 'aggregate'@'localhost' identified by 'aggregate';
        grant all on `aggregate`.* to 'aggregate'@'localhost' identified by 'aggregate';
        flush privileges;

This is likely due to https://github.com/opendatakit/aggregate/blob/HEAD/installer/project/components/configure_war.xml#L355