summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/postgres.py
Commit message (Expand)AuthorAgeFilesLines
...
* - column labels are now generated in the compilation phase, whichMike Bayer2007-03-241-0/+3
* various cleanup, docs and things, getting ready for 0.3.6Mike Bayer2007-03-231-1/+1
* - added db modules to genned docstringsMike Bayer2007-03-181-5/+4
* migrated (most) docstrings to pep-257 format, docstring generator using strai...Mike Bayer2007-02-251-44/+71
* added PGInet type [ticket:444]Mike Bayer2007-02-171-0/+5
* - added PGInterval type [ticket:460]Mike Bayer2007-02-061-1/+5
* - sequences on a non-pk column will properly fire off on INSERT for PG/oracleMike Bayer2007-02-021-4/+6
* added regexp search for "schema" in sequence reflection for [ticket:442], cou...Mike Bayer2007-01-281-0/+6
* oracle can conditionally decide if it wants to say "use rowid" in a select st...Mike Bayer2007-01-241-1/+1
* has_table wasnt handling case-sensitive table namesMike Bayer2007-01-191-2/+2
* - fix to the initial checkfirst for tables to take current schema into accoun...Mike Bayer2007-01-171-3/+6
* - postgres cursor option is now server_side_cursors=False; some users get bad...Mike Bayer2007-01-141-6/+5
* - postgres no longer uses client-side cursors, uses more efficient server sideMike Bayer2007-01-101-3/+12
* copyright updateMike Bayer2007-01-051-1/+1
* - fixes to postgres reflection to better handle when schema names are present;Mike Bayer2006-12-241-53/+34
* - added "BIGSERIAL" support for postgres table with PGBigInteger/autoincrementMike Bayer2006-12-151-1/+4
* PGBigInteger subclasses PGInteger so it gets usedMike Bayer2006-12-151-1/+1
* - support for None as precision/length in numeric types for postgres, sqlite,...Mike Bayer2006-12-091-21/+25
* - fix to postgres sequence quoting when using schemasMike Bayer2006-10-301-1/+1
* converted imports to absoluteMike Bayer2006-10-261-1/+1
* fixed pg reflection of timezonesMike Bayer2006-10-201-2/+8
* - a fair amount of cleanup to the schema package, removal of ambiguousMike Bayer2006-10-141-5/+5
* some cleanup submitted by Lele GalifaxMike Bayer2006-10-131-4/+0
* added PGBigInteger typeMike Bayer2006-10-111-1/+4
* - the "foreign_key" attribute on Column and ColumnElement in generalMike Bayer2006-10-081-1/+1
* - added autoincrement=True to Column; will disable schema generationMike Bayer2006-09-231-2/+2
* no SERIAL for smallinteger columnsMike Bayer2006-09-191-1/+1
* since casing is figured out quasi-automatically when creating table/column/etc,Mike Bayer2006-08-311-9/+3
* pg formats sequence name, more quote test fixesMike Bayer2006-08-311-1/+1
* - added case_sensitive argument to MetaData, Table, Column, determinesMike Bayer2006-08-311-16/+5
* - added "timezone=True" flag to DateTime and Time types. postgresMike Bayer2006-08-261-4/+4
* working on sequence quoting support....Mike Bayer2006-08-211-1/+3
* postgres reflection uses dialect-wide preparerMike Bayer2006-08-211-1/+1
* - postgres reflection moved to use pg_schema tables, can be overriddenMike Bayer2006-08-211-4/+176
* [ticket:277] check if pg/oracle sequence exists. checks in all cases before ...Mike Bayer2006-08-161-2/+7
* quoting facilities set up so that database-specific quoting can beMike Bayer2006-08-121-1/+7
* [ticket:256] propigating url.query arguments to connect() function for all db'sMike Bayer2006-07-251-0/+1
* overhaul to schema, addition of ForeignKeyConstraint/Mike Bayer2006-07-141-5/+1
* dont put SERIAL on a column if it has a ForeignKeyMike Bayer2006-06-261-1/+1
* dbengine doc: no support for pg1Mike Bayer2006-06-031-2/+4
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-68/+66
* gambit's patch to add DISTINCT ONMike Bayer2006-05-021-0/+14
* fix for [ticket:169], moves the creation of "default" parameters more accuratelyMike Bayer2006-04-281-2/+2
* added patch for mxDateTime support, [ticket:5], courtesy jkakar@kakar.caMike Bayer2006-04-111-5/+22
* moves the binding of a TypeEngine object from "schema/statement creation" tim...Mike Bayer2006-04-061-1/+1
* refactor to Compiled.get_params() to return new ClauseParameters object, a mo...Mike Bayer2006-03-131-1/+1
* got column onupdate workingMike Bayer2006-03-051-16/+0
* making sequences, column defaults independently executeableMike Bayer2006-03-041-2/+2
* removed the dependency of ANSICompiler on SQLEngine. you can now make ANSICo...Mike Bayer2006-03-041-1/+1
* made SchemaEngine more prominent as the base of Table associationMike Bayer2006-03-011-2/+4