MDL-18420 reserved words - adding 2 new PG reserved words. Merged from 19_STABLE

This commit is contained in:
stronk7 2009-03-02 19:09:29 +00:00
parent 09717fa5ca
commit e9fc2f32ef

View File

@ -573,10 +573,10 @@ function getSequenceFromDB($xmldb_table) {
'intersect', 'into', 'is', 'isnull', 'join', 'leading', 'left', 'like',
'limit', 'localtime', 'localtimestamp', 'natural', 'new', 'not',
'notnull', 'null', 'off', 'offset', 'old', 'on', 'only', 'or', 'order',
'outer', 'overlaps', 'placing', 'primary', 'references', 'right', 'select',
'outer', 'overlaps', 'placing', 'primary', 'references', 'returning', 'right', 'select',
'session_user', 'similar', 'some', 'symmetric', 'table', 'then', 'to',
'trailing', 'true', 'union', 'unique', 'user', 'using', 'verbose',
'when', 'where'
'when', 'where', 'with'
);
return $reserved_words;
}