* * Copyright (C) 1998-1999 Tobias Ratschiller * * -------------------------------------------- * * This file written by Michael Dean * * and Miles Lott * * -------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the * * Free Software Foundation; either version 2 of the License, or (at your * * option) any later version. * \**************************************************************************/ class schema_proc_pgsql { var $m_sStatementTerminator; /* Following added to convert sql to array */ var $sCol = array(); var $pk = array(); var $fk = array(); var $ix = array(); var $uc = array(); function schema_proc_pgsql() { $this->m_sStatementTerminator = ';'; } /* Return a type suitable for DDL */ function TranslateType($sType, $iPrecision = 0, $iScale = 0) { $sTranslated = $sType; switch($sType) { case 'auto': $sTranslated = 'int4'; break; case 'blob': $sTranslated = 'bytea'; break; case 'char': if($iPrecision > 0 && $iPrecision < 256) { $sTranslated = sprintf("char(%d)", $iPrecision); } if($iPrecision > 255) { $sTranslated = 'text'; } break; case 'decimal': $sTranslated = sprintf("decimal(%d,%d)", $iPrecision, $iScale); break; case 'float': if($iPrecision == 4 || $iPrecision == 8) { $sTranslated = sprintf("float%d", $iPrecision); } break; case 'int': if($iPrecision == 2 || $iPrecision == 4 || $iPrecision == 8) { $sTranslated = sprintf("int%d", $iPrecision); } break; case 'longtext': $sTranslated = 'text'; break; case 'varchar': if($iPrecision > 0 && $iPrecision < 256) { $sTranslated = sprintf("varchar(%d)", $iPrecision); } if($iPrecision > 255) { $sTranslated = 'text'; } break; } return $sTranslated; } function TranslateDefault($sDefault) { switch($sDefault) { case 'current_date': case 'current_timestamp': $sDefault = 'now'; } return "'$sDefault'"; } /* Inverse of above, convert sql column types to array info */ function rTranslateType($sType, $iPrecision = 0, $iScale = 0) { $sTranslated = ''; switch($sType) { case 'serial': $sTranslated = "'type' => 'auto'"; break; case 'int2': $sTranslated = "'type' => 'int', 'precision' => 2"; break; case 'int4': $sTranslated = "'type' => 'int', 'precision' => 4"; break; case 'int8': $sTranslated = "'type' => 'int', 'precision' => 8"; break; case 'bpchar': case 'char': if($iPrecision > 0 && $iPrecision < 256) { $sTranslated = "'type' => 'char', 'precision' => $iPrecision"; } if($iPrecision > 255) { $sTranslated = "'type' => 'text'"; } break; case 'numeric': /* Borrowed from phpPgAdmin */ $iPrecision = ($iScale >> 16) & 0xffff; $iScale = ($iScale - 4) & 0xffff; $sTranslated = "'type' => 'decimal', 'precision' => $iPrecision, 'scale' => $iScale"; break; case 'float': case 'float4': case 'float8': case 'double': $sTranslated = "'type' => 'float', 'precision' => $iPrecision"; break; case 'datetime': case 'timestamp': $sTranslated = "'type' => 'timestamp'"; break; case 'varchar': if($iPrecision > 0 && $iPrecision < 256) { $sTranslated = "'type' => 'varchar', 'precision' => $iPrecision"; } if($iPrecision > 255) { $sTranslated = "'type' => 'text'"; } break; case 'text': case 'blob': case 'date': case 'bool': $sTranslated = "'type' => '$sType'"; break; } return $sTranslated; } function GetPKSQL($sFields) { return "PRIMARY KEY($sFields)"; } function GetUCSQL($sFields) { return "UNIQUE($sFields)"; } function GetIXSQL($sFields,&$append,$options,$sTableName) { $append = True; $ixsql = ''; $ixFields = str_replace(',','_',$sFields); $index = $sTableName . '_' . $ixFields . '_idx'; return "CREATE INDEX $index ON $sTableName ($sFields);\n"; } function _GetColumns($oProc, $sTableName, &$sColumns, $sDropColumn='', $sAlteredColumn='', $sAlteredColumnType='') { $sdb = $oProc->m_odb; $sdc = $oProc->m_odb; $sColumns = ''; $this->pk = array(); $this->fk = array(); $this->ix = array(); $this->uc = array(); $query = "SELECT a.attname,a.attnum FROM pg_attribute a,pg_class b WHERE "; $query .= "b.oid=a.attrelid AND a.attnum>0 and b.relname='$sTableName'"; if($sDropColumn != '') { $query .= " AND a.attname != '$sDropColumn'"; } $query .= ' ORDER BY a.attnum'; // echo '_GetColumns: ' . $query; $oProc->m_odb->query($query); while($oProc->m_odb->next_record()) { if($sColumns != '') { $sColumns .= ','; } $sFieldName = $oProc->m_odb->f(0); /* Failsafe in case the query still includes the column to be dropped */ if($sFieldName != $sDropColumn) { $sColumns .= $sFieldName; } if($sAlteredColumn == $sFieldName && $sAlteredColumnType != '') { $sColumns .= '::' . $sAlteredColumnType; } } //$qdefault = "SELECT substring(d.adsrc for 128) FROM pg_attrdef d, pg_class c " // . "WHERE c.relname = $sTableName AND c.oid = d.adrelid AND d.adnum =" . $oProc->m_odb->f(1); $sql_get_fields = " SELECT a.attnum, a.attname AS field, t.typname AS type, a.attlen AS length, a.atttypmod AS lengthvar, a.attnotnull AS notnull FROM pg_class c, pg_attribute a, pg_type t WHERE c.relname = '$sTableName' and a.attnum > 0 and a.attrelid = c.oid and a.atttypid = t.oid ORDER BY a.attnum"; /* attnum field type length lengthvar notnull(Yes/No) */ $sdb->query($sql_get_fields); while($sdb->next_record()) { $colnum = $sdb->f(0); $colname = $sdb->f(1); if($sdb->f(5) == 'Yes') { $null = "'nullable' => True"; } else { $null = "'nullable' => False"; } if($sdb->f(2) == 'numeric') { $prec = $sdb->f(3); $scale = $sdb->f(4); } elseif($sdb->f(3) > 0) { $prec = $sdb->f(3); $scale = 0; } elseif($sdb->f(4) > 0) { $prec = $sdb->f(4) - 4; $scale = 0; } else { $prec = 0; $scale = 0; } $type = $this->rTranslateType($sdb->f(2), $prec, $scale); $sql_get_default = " SELECT d.adsrc AS rowdefault FROM pg_attrdef d, pg_class c WHERE c.relname = '$sTableName' AND c.oid = d.adrelid AND d.adnum = $colnum "; $sdc->query($sql_get_default); $sdc->next_record(); if($sdc->f(0)) { if(strstr($sdc->f(0),'nextval')) { $default = ''; $nullcomma = ''; } else { $default = "'default' => '".$sdc->f(0)."'"; $nullcomma = ','; } } else { $default = ''; $nullcomma = ''; } $default = str_replace("''","'",$default); $this->sCol[] = "\t\t\t\t'" . $colname . "' => array(" . $type . ',' . $null . $nullcomma . $default . '),' . "\n"; } $sql_pri_keys = " SELECT ic.relname AS index_name, bc.relname AS tab_name, ta.attname AS column_name, i.indisunique AS unique_key, i.indisprimary AS primary_key FROM pg_class bc, pg_class ic, pg_index i, pg_attribute ta, pg_attribute ia WHERE bc.oid = i.indrelid AND ic.oid = i.indexrelid AND ia.attrelid = i.indexrelid AND ta.attrelid = bc.oid AND bc.relname = '$sTableName' AND ta.attrelid = i.indrelid AND ta.attnum = i.indkey[ia.attnum-1] ORDER BY index_name, tab_name, column_name"; $sdc->query($sql_pri_keys); while($sdc->next_record()) { //echo '
checking: ' . $sdc->f(4); if($sdc->f(4) == 't') { $this->pk[] = $sdc->f(2); } if($sdc->f(3) == 't') { $this->uc[] = $sdc->f(2); } } $this->_GetIndices($oProc,$sTableName,$this->pk,$this->ix,$this->uc,$this->fk); /* ugly as heck, but is here to chop the trailing comma on the last element (for php3) */ $this->sCol[count($this->sCol) - 1] = substr($this->sCol[count($this->sCol) - 1],0,-2) . "\n"; return False; } function _GetIndices($oProc,$sTableName,&$aPk,&$aIx,&$aUc,&$aFk) { /* Try not to die on errors with the query */ $tmp = $oProc->Halt_On_Error; $oProc->Halt_On_Error = 'no'; $aIx = array(); /* This select excludes any indexes that are just base indexes for constraints. */ if(@$oProc->m_odb->db_version >= 7.3) { $sql = "SELECT pg_catalog.pg_get_indexdef(i.indexrelid) as pg_get_indexdef FROM pg_catalog.pg_class c, pg_catalog.pg_class c2, pg_catalog.pg_index i WHERE c.relname = '$sTableName' AND pg_catalog.pg_table_is_visible(c.oid) AND c.oid = i.indrelid AND i.indexrelid = c2.oid AND NOT EXISTS ( SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) WHERE d.classid = c2.tableoid AND d.objid = c2.oid AND d.deptype = 'i' AND c.contype IN ('u', 'p') ) ORDER BY c2.relname"; $num = 0; } else { $sql = "SELECT c2.relname, i.indisprimary, i.indisunique, pg_get_indexdef(i.indexrelid) FROM pg_class c, pg_class c2, pg_index i WHERE c.relname = '$sTableName' AND c.oid = i.indrelid AND i.indexrelid = c2.oid AND NOT i.indisprimary AND NOT i.indisunique ORDER BY c2.relname"; $num = 3; } @$oProc->m_odb->query($sql); $oProc->m_odb->next_record(); $indexfields = ereg_replace("^CREATE.+\(",'',$oProc->m_odb->f($num)); $indexfields = ereg_replace("\)$",'',$indexfields); $aIx = explode(',',$indexfields); $i = 0; foreach($aIx as $ix) { $aIx[$i] = trim($ix); $i++; } /* Restore original value */ $oProc->Halt_On_Error = $tmp; #echo "Indices from $sTableName
pk=".print_r($aPk,True)."\nix=".print_r($aIx,True)."\nuc=".print_r($aUc,True)."
\n"; } function _CopyAlteredTable($oProc, &$aTables, $sSource, $sDest) { $oDB = $oProc->m_odb; $oProc->m_odb->query("SELECT * FROM $sSource"); while($oProc->m_odb->next_record()) { $sSQL = "INSERT INTO $sDest ("; $i=0; @reset($aTables[$sDest]['fd']); while(list($name,$arraydef) = each($aTables[$sDest]['fd'])) { if($i > 0) { $sSQL .= ','; } $sSQL .= $name; $i++; } $sSQL .= ') VALUES ('; @reset($aTables[$sDest]['fd']); $i = 0; while(list($name,$arraydef) = each($aTables[$sDest]['fd'])) { if($i > 0) { $sSQL .= ','; } // !isset($arraydef['nullable']) means nullable !!! if($oProc->m_odb->f($name) == NULL && (!isset($arraydef['nullable']) || $arraydef['nullable'])) { $sSQL .= 'NULL'; } else { $value = $oProc->m_odb->f($name) != NULL ? $oProc->m_odb->f($name) : @$arraydef['default']; switch($arraydef['type']) { case 'blob': case 'char': case 'date': case 'text': case 'timestamp': case 'varchar': $sSQL .= "'" . $oProc->m_odb->db_addslashes($oProc->m_odb->f($name)) . "'"; break; default: $sSQL .= (int)$oProc->m_odb->f($name); } } $i++; } $sSQL .= ')'; $oDB->query($sSQL); } return true; } function GetSequenceForTable($oProc,$table,&$sSequenceName) { if($GLOBALS['DEBUG']) { echo '
GetSequenceForTable: ' . $table; } $oProc->m_odb->query("SELECT relname FROM pg_class WHERE NOT relname ~ 'pg_.*' AND relname LIKE 'seq_$table' AND relkind='S' ORDER BY relname",__LINE__,__FILE__); $oProc->m_odb->next_record(); if($oProc->m_odb->f('relname')) { $sSequenceName = $oProc->m_odb->f('relname'); } return True; } function GetSequenceFieldForTable($oProc,$table,&$sField) { if($GLOBALS['DEBUG']) { echo '
GetSequenceFieldForTable: You rang?'; } $oProc->m_odb->query("SELECT a.attname FROM pg_attribute a, pg_class c, pg_attrdef d WHERE c.relname='$table' AND c.oid=d.adrelid AND d.adsrc LIKE '%seq_$table%' AND a.attrelid=c.oid AND d.adnum=a.attnum"); $oProc->m_odb->next_record(); if($oProc->m_odb->f('attname')) { $sField = $oProc->m_odb->f('attname'); } return True; } function GetIndexesForTable($oProc,$table,&$sIndexNames) { $oProc->m_odb->query("SELECT a.attname FROM pg_attribute a, pg_class c, pg_attrdef d WHERE c.relname='$table' AND c.oid=d.adrelid AND d.adsrc LIKE '%$table%idx' AND a.attrelid=c.oid AND d.adnum=a.attnum"); while($oProc->m_odb->next_record()) { $sIndexNames[] = $oProc->m_odb->f('attname'); } return True; } function DropSequenceForTable($oProc,$table) { if($GLOBALS['DEBUG']) { echo '
DropSequenceForTable: ' . $table; } $this->GetSequenceForTable($oProc,$table,$sSequenceName); if($sSequenceName) { $oProc->m_odb->query("DROP SEQUENCE " . $sSequenceName,__LINE__,__FILE__); } return True; } function DropIndexesForTable($oProc,$table) { if($GLOBALS['DEBUG']) { echo '
DropSequenceForTable: ' . $table; } $this->GetIndexesForTable($oProc,$table,$sIndexNames); if(@is_array($sIndexNames)) { foreach($sIndexNames as $null => $index) { $oProc->m_odb->query("DROP INDEX $index",__LINE__,__FILE__); } } return True; } function DropTable($oProc, &$aTables, $sTableName) { $this->DropSequenceForTable($oProc,$sTableName); return $oProc->m_odb->query("DROP TABLE " . $sTableName) && $this->DropSequenceForTable($oProc, $sTableName) && $this->DropIndexesForTable($oProc, $sTableName); } function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData = true) { if($GLOBALS['DEBUG']) { echo '
DropColumn: table=' . $sTableName . ', column=' . $sColumnName; } if($bCopyData) { $oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName"); } $this->DropTable($oProc, $aTables, $sTableName); $oProc->_GetTableSQL($sTableName, $aNewTableDef, $sTableSQL, $sSequenceSQL,$append_ix); if($sSequenceSQL) { $oProc->m_odb->query($sSequenceSQL); } if($append_ix) { $query = "CREATE TABLE $sTableName ($sTableSQL"; } else { $query = "CREATE TABLE $sTableName ($sTableSQL)"; } if(!$bCopyData) { return !!($oProc->m_odb->query($query)); } $oProc->m_odb->query($query); $this->_GetColumns($oProc, $sTableName . '_tmp', $sColumns, $sColumnName); $query = "INSERT INTO $sTableName($sColumns) SELECT $sColumns FROM $sTableName" . '_tmp'; $bRet = !!($oProc->m_odb->query($query)); return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . '_tmp')); } function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName) { if($GLOBALS['DEBUG']) { echo '
RenameTable(): Fetching old sequence for: ' . $sOldTableName; } $this->GetSequenceForTable($oProc,$sOldTableName,$sSequenceName); if($GLOBALS['DEBUG']) { echo ' - ' . $sSequenceName; } if($GLOBALS['DEBUG']) { echo '
RenameTable(): Fetching sequence field for: ' . $sOldTableName; } $this->GetSequenceFieldForTable($oProc,$sOldTableName,$sField); if($GLOBALS['DEBUG']) { echo ' - ' . $sField; } if($sSequenceName) { $oProc->m_odb->query("SELECT last_value FROM seq_$sOldTableName",__LINE__,__FILE__); $oProc->m_odb->next_record(); $lastval = $oProc->m_odb->f(0); if($GLOBALS['DEBUG']) { echo '
RenameTable(): dropping old sequence: ' . $sSequenceName . ' used on field: ' . $sField; } $this->DropSequenceForTable($oProc,$sOldTableName); if($lastval) { $lastval = ' start ' . $lastval; } $this->GetSequenceSQL($sNewTableName,$sSequenceSQL); if($GLOBALS['DEBUG']) { echo '
RenameTable(): Making new sequence using: ' . $sSequenceSQL . $lastval; } $oProc->m_odb->query($sSequenceSQL . $lastval,__LINE__,__FILE__); if($GLOBALS['DEBUG']) { echo '
RenameTable(): Altering column default for: ' . $sField; } $oProc->m_odb->query("ALTER TABLE $sOldTableName ALTER $sField SET DEFAULT nextval('seq_" . $sNewTableName . "')",__LINE__,__FILE__); } // renameing existing indexes and primary keys $indexes = $oProc->m_odb->Link_ID->MetaIndexes($sOldTableName,True); if($GLOBALS['DEBUG']) { echo '
RenameTable(): Fetching indexes: '; _debug_array($indexes); } foreach($indexes as $name => $data) { $new_name = str_replace($sOldTableName,$sNewTableName,$name); $sql = "ALTER TABLE $name RENAME TO $new_name"; if($GLOBALS['DEBUG']) { echo "
RenameTable(): Renaming the index '$name': $sql"; } $oProc->m_odb->query($sql); } return !!($oProc->m_odb->query("ALTER TABLE $sOldTableName RENAME TO $sNewTableName")); } function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true) { /* This really needs testing - it can affect primary keys, and other table-related objects like sequences and such */ if($bCopyData) { $oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName"); } $this->DropTable($oProc, $aTables, $sTableName); if(!$bCopyData) { return $this->CreateTable($oProc, $aTables, $sTableName, $oProc->m_aTables[$sTableName], false); } $this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], True); $this->_GetColumns($oProc, $sTableName . "_tmp", $sColumns); $query = "INSERT INTO $sTableName SELECT $sColumns FROM $sTableName" . "_tmp"; $bRet = !!($oProc->m_odb->query($query)); return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . "_tmp")); } function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData = true) { if($bCopyData) { $oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName"); } $this->DropTable($oProc, $aTables, $sTableName); if(!$bCopyData) { return $this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], True); } $this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], True); $this->_GetColumns($oProc, $sTableName . "_tmp", $sColumns, '', $sColumnName, $aColumnDef['type'] == 'auto' ? 'int4' : $aColumnDef['type']); /* TODO: analyze the type of change and determine if this is used or _CopyAlteredTable this is a performance consideration only, _CopyAlteredTable should be safe $query = "INSERT INTO $sTableName SELECT $sColumns FROM $sTableName" . "_tmp"; $bRet = !!($oProc->m_odb->query($query)); */ $bRet = $this->_CopyAlteredTable($oProc, $aTables, $sTableName . '_tmp', $sTableName); return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . "_tmp")); } function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef) { if(isset($aColumnDef['default'])) // pgsql cant add a colum with a default { $default = $aColumnDef['default']; unset($aColumnDef['default']); } if(isset($aColumnDef['nullable']) && !$aColumnDef['nullable']) // pgsql cant add a column not nullable { $notnull = !$aColumnDef['nullable']; unset($aColumnDef['nullable']); } $oProc->_GetFieldSQL($aColumnDef, $sFieldSQL); $query = "ALTER TABLE $sTableName ADD COLUMN $sColumnName $sFieldSQL"; if(($Ok = !!($oProc->m_odb->query($query))) && isset($default)) { $query = "ALTER TABLE $sTableName ALTER COLUMN $sColumnName SET DEFAULT '$default';\n"; $query .= "UPDATE $sTableName SET $sColumnName='$default';\n"; $Ok = !!($oProc->m_odb->query($query)); if($OK && $notnull) { // unfortunally this is pgSQL >= 7.3 //$query .= "ALTER TABLE $sTableName ALTER COLUMN $sColumnName SET NOT NULL;\n"; //$Ok = !!($oProc->m_odb->query($query)); // so we do it the slow way AlterColumn($oProc, $aTables, $sTableName, $sColumnName, $aColumnDef); } } return $Ok; } function UpdateSequence($oDb,$sTableName,$sColName) { $sql = "SELECT MAX($sColName) FROM $sTableName"; $oDb->query($sql,__LINE__,__FILE__); if ($oDb->next_record() && $oDb->f(0)) { $sql = "SELECT setval('seq_$sTableName',".(1 + $oDb->f(0)).")"; if($GLOBALS['DEBUG']) { echo "
Updating sequence 'seq_$sTableName' using: $sql"; } return $oDb->query($sql,__LINE__,__FILE__); } return True; } function GetSequenceSQL($sTableName, &$sSequenceSQL) { $sSequenceSQL = sprintf("CREATE SEQUENCE seq_%s", $sTableName); return true; } function CreateTable($oProc, $aTables, $sTableName, $aTableDef, $bCreateSequence = true) { if($oProc->_GetTableSQL($sTableName, $aTableDef, $sTableSQL, $sSequenceSQL,$append_ix)) { /* create sequence first since it will be needed for default */ if($bCreateSequence && $sSequenceSQL != '') { if($GLOBALS['DEBUG']) { echo '
Making sequence using: ' . $sSequenceSQL; } $oProc->m_odb->query($sSequenceSQL); } if($append_ix) { $query = "CREATE TABLE $sTableName ($sTableSQL"; } else { $query = "CREATE TABLE $sTableName ($sTableSQL)"; } return !!($oProc->m_odb->query($query)); } return false; } } ?>