postgres does not support the , syntax. a ; would work, if it weren't statement-locked.

FWIW, the exact same queries listed for postgres are perfectly valid and equivalent on mysql. no need for separate
statements.
This commit is contained in:
Habeas Codice 2015-01-28 17:47:31 -08:00
parent d59bd31a68
commit 2039710962

View File

@ -1540,7 +1540,9 @@ function update_r1133() {
function update_r1134() { function update_r1134() {
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r = q("ALTER TABLE xlink ADD xlink_static numeric(1) NOT NULL DEFAULT '0', create index xlink_static on xlink ( \"xlink_static\" ) "); $r1 = q("ALTER TABLE xlink ADD xlink_static numeric(1) NOT NULL DEFAULT '0' ");
$r2 = q("create index xlink_static on xlink ( xlink_static ) ");
$r = $r1 && $r2;
} }
else else
$r = q("ALTER TABLE xlink ADD xlink_static TINYINT( 1 ) NOT NULL DEFAULT '0', ADD INDEX ( xlink_static ) "); $r = q("ALTER TABLE xlink ADD xlink_static TINYINT( 1 ) NOT NULL DEFAULT '0', ADD INDEX ( xlink_static ) ");