summaryrefslogtreecommitdiff
path: root/test/sql
Commit message (Expand)AuthorAgeFilesLines
* changed "_source_column" to simpler "_distance"Mike Bayer2007-07-101-0/+2
* more "column targeting" enhancements..columns have a "depth" from their ultim...Mike Bayer2007-07-101-2/+27
* - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData insteadJason Kirtland2007-07-067-21/+21
* postgres:Mike Bayer2007-06-292-90/+1
* add missing grouping for compound selects. fixes ticket #623Ants Aasma2007-06-262-0/+50
* fix #624, modulo operator escaping on mysql and postgresAnts Aasma2007-06-261-0/+24
* fix precedence of between (ticket #621)Ants Aasma2007-06-251-0/+4
* - fixed precedence of operators so that parenthesis are correctly appliedMike Bayer2007-06-252-7/+80
* added test for correlation of scalar subqueries to a JOIN objectMike Bayer2007-06-241-0/+7
* - fixed "where"/"from" criterion of select() to accept a unicode stringMike Bayer2007-06-231-0/+9
* - added dialect flag "auto_convert_lobs", defaults to True; will cause anyMike Bayer2007-06-221-2/+22
* - added standalone distinct() function in addition to column.distinct()Mike Bayer2007-06-211-0/+9
* - added Interval type to types.py [ticket:595]Mike Bayer2007-06-171-0/+19
* - result.last_inserted_ids() should return a list that is identicallyMike Bayer2007-06-171-0/+79
* - datetime fixes: got subsecond TIMESTAMP to work [ticket:604],Mike Bayer2007-06-171-28/+13
* - sqlite better handles datetime/date/time objects mixed and matchedMike Bayer2007-06-171-1/+0
* test case for oracle timestamp adaptionMike Bayer2007-06-161-1/+18
* Multiple MSSQL fixes; see ticket #581Paul Johnston2007-06-133-7/+46
* - MySQL TEXT-derived types weren't respecting convert_unicode, fixes #601Jason Kirtland2007-06-131-17/+26
* extra test for corresponding column fixMike Bayer2007-06-071-0/+5
* - fixed bug where selectable.corresponding_column(selectable.c.col)Mike Bayer2007-06-061-0/+7
* CompoundSelect (i.e. UNION etc.) needed self_group() to provide parenthesisMike Bayer2007-05-231-0/+10
* - removed "no group by's in a select thats part of a UNION"Mike Bayer2007-05-181-0/+11
* restored outerjoin testMike Bayer2007-05-151-10/+8
* - parenthesis are applied to clauses via a new _Grouping construct.Mike Bayer2007-05-142-14/+18
* - _Label propigates "_hide_froms()" so that scalar selectsMike Bayer2007-05-111-1/+5
* - fix to long name generation when using oid_column as an order byMike Bayer2007-05-071-1/+13
* - _Label class overrides compare_self to return its ultimate object.Mike Bayer2007-05-031-1/+5
* - MySQL ENUM types can now optionally ensure that values are within theJason Kirtland2007-05-021-196/+0
* Removed an unneeded and troublesome subquery test.Jason Kirtland2007-05-021-5/+0
* some notes on a labeling issue that arises when label truncation doesnt match...Mike Bayer2007-05-011-2/+13
* - allow MySQL column-level CHARACTER SET and COLLATE, plus shortcuts likeJason Kirtland2007-05-011-6/+201
* - the label() method on ColumnElement will properly propigate theMike Bayer2007-04-291-0/+9
* - mysql uses "DESCRIBE [<schemaname>].<tablename>", catching exceptionsMike Bayer2007-04-291-4/+0
* - mssql: replace "select @@identity" with "select @@scope_identity". Should h...Rick Morrison2007-04-291-0/+26
* - Fully specify ordering for ordered union test comparisonJason Kirtland2007-04-271-3/+3
* - added a col label to help sqlite with order byMike Bayer2007-04-241-3/+3
* - fix to case() construct to propigate the type of the firstMike Bayer2007-04-242-17/+18
* - merged in the combined patch for #474, #475, #476 (attached to #476) and a ...Jason Kirtland2007-04-191-1/+93
* - the "where" criterion of an update() and delete() now correlatesMike Bayer2007-04-181-1/+6
* - the dialects within sqlalchemy.databases become a setuptoolsMike Bayer2007-04-171-3/+3
* - got unicode schemas to work with postgresMike Bayer2007-04-151-8/+25
* - small fix to allow successive compiles of the same SELECT objectMike Bayer2007-04-131-1/+3
* - the "mini" column labels generated when using subqueries, whichMike Bayer2007-04-112-11/+20
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-023-33/+34
* added keys() to ColumnParameters, needed for setbindparamsizes traversalMike Bayer2007-03-281-4/+4
* - sending None as an argument to func.<something> will produceMike Bayer2007-03-281-1/+4
* - column label and bind param "truncation" also generateMike Bayer2007-03-282-33/+56
* added label truncation for bind param names which was lost in the previous re...Mike Bayer2007-03-282-0/+14
* - fix for fetchmany() "size" argument being positional in mostMike Bayer2007-03-281-1/+11