From: Carsten K. <car...@ma...> - 2001-12-05 00:20:22
|
Found a small problem with the schema files while setting up a new database for 1.3. My mysql-3.23.44 doesn't like it when there are only tabs inside the table definitions, at least one space is needed. Tabs at the beginning of each line are OK. good: CREATE TABLE page ( [tab]id[space][tab][tab]INT NOT NULL, bad: CREATE TABLE page ( [tab]id[tab][tab]INT NOT NULL, The file schemas/mysql.sql has been fixed, and minisql.sql looks fine (only 2 tabs but at the beginning of the line). There are still tabs inside psql.sql, someone should test it to make sure the tabs don't interfere. If tabs do cause a problem in psql.sql, it is probably fixed by just inserting a space before each tab, or convert all tabs to spaces. Is it possible to put in some kind of a comment line as a reminder into each schema file, without it causing problems for the database? Carsten |