I have the same problem on a new host. I've tried to import the sql schema manually:
mysql -p -e "create database gallery_test;"
cd /var/www/html/gallery3/installer
mysql -p gallery_test < install.sql
This gives an error similar to the web based installer.
From a working gallery 3.0.4 I backed up the schema with mysqldump -p gallery3 --no-data -d --compact > g3.sql and copied the g3.sql file in place of the install.sql on the new server.
This produced the same error. However, the install.sql imported fine with mysql -p gallery3 < install.sql