Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
4a4341e7
Commit
4a4341e7
authored
Nov 13, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added reserved keyword array to pgsql datadict
parent
f94d3e47
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
310 additions
and
8 deletions
+310
-8
Pgsql.php
lib/Doctrine/DataDict/Pgsql.php
+310
-8
No files found.
lib/Doctrine/DataDict/Pgsql.php
View file @
4a4341e7
...
...
@@ -30,6 +30,308 @@
* @since 1.0
*/
class
Doctrine_DataDict_Pgsql
extends
Doctrine_DataDict
{
/**
* @param array $reservedKeyWords an array of reserved keywords by pgsql
*/
protected
static
$reservedKeyWords
=
array
(
'abort'
,
'absolute'
,
'access'
,
'action'
,
'add'
,
'after'
,
'aggregate'
,
'all'
,
'alter'
,
'analyse'
,
'analyze'
,
'and'
,
'any'
,
'as'
,
'asc'
,
'assertion'
,
'assignment'
,
'at'
,
'authorization'
,
'backward'
,
'before'
,
'begin'
,
'between'
,
'bigint'
,
'binary'
,
'bit'
,
'boolean'
,
'both'
,
'by'
,
'cache'
,
'called'
,
'cascade'
,
'case'
,
'cast'
,
'chain'
,
'char'
,
'character'
,
'characteristics'
,
'check'
,
'checkpoint'
,
'class'
,
'close'
,
'cluster'
,
'coalesce'
,
'collate'
,
'column'
,
'comment'
,
'commit'
,
'committed'
,
'constraint'
,
'constraints'
,
'conversion'
,
'convert'
,
'copy'
,
'create'
,
'createdb'
,
'createuser'
,
'cross'
,
'current_date'
,
'current_time'
,
'current_timestamp'
,
'current_user'
,
'cursor'
,
'cycle'
,
'database'
,
'day'
,
'deallocate'
,
'dec'
,
'decimal'
,
'declare'
,
'default'
,
'deferrable'
,
'deferred'
,
'definer'
,
'delete'
,
'delimiter'
,
'delimiters'
,
'desc'
,
'distinct'
,
'do'
,
'domain'
,
'double'
,
'drop'
,
'each'
,
'else'
,
'encoding'
,
'encrypted'
,
'end'
,
'escape'
,
'except'
,
'exclusive'
,
'execute'
,
'exists'
,
'explain'
,
'external'
,
'extract'
,
'false'
,
'fetch'
,
'float'
,
'for'
,
'force'
,
'foreign'
,
'forward'
,
'freeze'
,
'from'
,
'full'
,
'function'
,
'get'
,
'global'
,
'grant'
,
'group'
,
'handler'
,
'having'
,
'hour'
,
'ilike'
,
'immediate'
,
'immutable'
,
'implicit'
,
'in'
,
'increment'
,
'index'
,
'inherits'
,
'initially'
,
'inner'
,
'inout'
,
'input'
,
'insensitive'
,
'insert'
,
'instead'
,
'int'
,
'integer'
,
'intersect'
,
'interval'
,
'into'
,
'invoker'
,
'is'
,
'isnull'
,
'isolation'
,
'join'
,
'key'
,
'lancompiler'
,
'language'
,
'leading'
,
'left'
,
'level'
,
'like'
,
'limit'
,
'listen'
,
'load'
,
'local'
,
'localtime'
,
'localtimestamp'
,
'location'
,
'lock'
,
'match'
,
'maxvalue'
,
'minute'
,
'minvalue'
,
'mode'
,
'month'
,
'move'
,
'names'
,
'national'
,
'natural'
,
'nchar'
,
'new'
,
'next'
,
'no'
,
'nocreatedb'
,
'nocreateuser'
,
'none'
,
'not'
,
'nothing'
,
'notify'
,
'notnull'
,
'null'
,
'nullif'
,
'numeric'
,
'of'
,
'off'
,
'offset'
,
'oids'
,
'old'
,
'on'
,
'only'
,
'operator'
,
'option'
,
'or'
,
'order'
,
'out'
,
'outer'
,
'overlaps'
,
'overlay'
,
'owner'
,
'partial'
,
'password'
,
'path'
,
'pendant'
,
'placing'
,
'position'
,
'precision'
,
'prepare'
,
'primary'
,
'prior'
,
'privileges'
,
'procedural'
,
'procedure'
,
'read'
,
'real'
,
'recheck'
,
'references'
,
'reindex'
,
'relative'
,
'rename'
,
'replace'
,
'reset'
,
'restrict'
,
'returns'
,
'revoke'
,
'right'
,
'rollback'
,
'row'
,
'rule'
,
'schema'
,
'scroll'
,
'second'
,
'security'
,
'select'
,
'sequence'
,
'serializable'
,
'session'
,
'session_user'
,
'set'
,
'setof'
,
'share'
,
'show'
,
'similar'
,
'simple'
,
'smallint'
,
'some'
,
'stable'
,
'start'
,
'statement'
,
'statistics'
,
'stdin'
,
'stdout'
,
'storage'
,
'strict'
,
'substring'
,
'sysid'
,
'table'
,
'temp'
,
'template'
,
'temporary'
,
'then'
,
'time'
,
'timestamp'
,
'to'
,
'toast'
,
'trailing'
,
'transaction'
,
'treat'
,
'trigger'
,
'trim'
,
'true'
,
'truncate'
,
'trusted'
,
'type'
,
'unencrypted'
,
'union'
,
'unique'
,
'unknown'
,
'unlisten'
,
'until'
,
'update'
,
'usage'
,
'user'
,
'using'
,
'vacuum'
,
'valid'
,
'validator'
,
'values'
,
'varchar'
,
'varying'
,
'verbose'
,
'version'
,
'view'
,
'volatile'
,
'when'
,
'where'
,
'with'
,
'without'
,
'work'
,
'write'
,
'year'
,
'zone'
);
/**
* Obtain DBMS specific SQL code portion needed to declare an text type
* field to be used in statements like CREATE TABLE.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment