Note: this list is kept only as a demonstration for CVSNotice. For the latest CVS notices, see the Xaraya and Postnuke sites
View Statistics - Next Notice - Previous NoticeDirectory filter : [ all ] / postnuke_official / html / pnadodb [ view in CVS ]
| Date | Directory [filter] | File(s) [view] | Author [filter] |
| 27 Jul 2002 13:32:53 | postnuke_official/html/pnadodb | pnTableDDL.php,1.9,1.10 | Gary Mitchell |
| fix bug in Create Index found by George Neill - thanks | |||
Update of /home/cvsroot/postnuke_official/html/pnadodb
In directory ns7.hostnuke.net:/tmp/cvs-serv22623
Modified Files:
pnTableDDL.php
Log Message:
fix bug in Create Index found by George Neill - thanks
Index: pnTableDDL.php
===================================================================
RCS file: /home/cvsroot/postnuke_official/html/pnadodb/pnTableDDL.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** pnTableDDL.php 22 Jul 2002 13:54:47 -0000 1.9
--- pnTableDDL.php 27 Jul 2002 13:32:51 -0000 1.10
***************
*** 237,243 ****
case 'postgres':
if ($index['unique'] == TRUE) {
! $sql .= 'CREATE UNIQUE INDEX '.$index['name'].' ON '.$table;
} else {
! $sql .= 'CREATE INDEX '.$index['name'].' ON '.$table;
}
$sql .= ' ('.join(',',$index['fields']).')';
--- 237,243 ----
case 'postgres':
if ($index['unique'] == TRUE) {
! $sql = 'CREATE UNIQUE INDEX '.$index['name'].' ON '.$table;
} else {
! $sql = 'CREATE INDEX '.$index['name'].' ON '.$table;
}
$sql .= ' ('.join(',',$index['fields']).')';
View Statistics - Next Notice - Previous Notice
| Visit Developer Site - Browse CVS Repository |
Syndicate via backend.rss (max. once per hour please) | Powered by CVSNotice 0.1.3 |