]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/log
thirdparty/sqlalchemy/sqlalchemy.git
18 years ago- removed regular expression step from most statement compilations.
Mike Bayer [Sat, 27 Oct 2007 17:41:30 +0000 (17:41 +0000)] 
- removed regular expression step from most statement compilations.
  also fixes [ticket:833]
- inlining on PG with_returning() call
- extra options added for profiling

18 years agoclear MapperStub ArgSingletons on clear_mappers() too...
Mike Bayer [Sat, 27 Oct 2007 01:19:25 +0000 (01:19 +0000)] 
clear MapperStub ArgSingletons on clear_mappers() too...

18 years ago- fixed eager calc endless loop, introduced by r3646? this issue should have been...
Mike Bayer [Sat, 27 Oct 2007 00:50:20 +0000 (00:50 +0000)] 
- fixed eager calc endless loop, introduced by r3646?  this issue should have been present before 3646 though.

18 years ago- fixed clear_mappers() behavior to better clean up after itself
Mike Bayer [Sat, 27 Oct 2007 00:24:43 +0000 (00:24 +0000)] 
- fixed clear_mappers() behavior to better clean up after itself

18 years agoMake access dao detecting more reliable #828
Paul Johnston [Fri, 26 Oct 2007 18:17:14 +0000 (18:17 +0000)] 
Make access dao detecting more reliable #828

18 years agoremove unused method
Mike Bayer [Thu, 25 Oct 2007 19:30:43 +0000 (19:30 +0000)] 
remove unused method

18 years ago- removed needless 'continue'
Mike Bayer [Thu, 25 Oct 2007 16:58:02 +0000 (16:58 +0000)] 
- removed needless 'continue'

18 years ago- refactored _compile_properties/_compile_property, removed redundant code.
Mike Bayer [Thu, 25 Oct 2007 16:57:04 +0000 (16:57 +0000)] 
- refactored _compile_properties/_compile_property, removed redundant code.
still a little squirrely but much less complex.
- improved behavior of add_property() etc., fixed [ticket:831] involving
  synonym/deferred

18 years ago- de-cruftified backref configuration code, backrefs which step on existing
Mike Bayer [Wed, 24 Oct 2007 23:25:47 +0000 (23:25 +0000)] 
- de-cruftified backref configuration code, backrefs which step on existing
  properties now raise an error [ticket:832]

18 years agoA --db alias for max.
Jason Kirtland [Wed, 24 Oct 2007 07:55:18 +0000 (07:55 +0000)] 
A --db alias for max.

18 years ago- Added initial version of MaxDB dialect.
Jason Kirtland [Tue, 23 Oct 2007 07:38:07 +0000 (07:38 +0000)] 
- Added initial version of MaxDB dialect.
- All optional test Sequences are now optional=True

18 years agoFixed assert_sql_count exception logic.
Jason Kirtland [Tue, 23 Oct 2007 07:03:07 +0000 (07:03 +0000)] 
Fixed assert_sql_count exception logic.

18 years agoUpdated for r3655.
Jason Kirtland [Tue, 23 Oct 2007 01:57:40 +0000 (01:57 +0000)] 
Updated for r3655.

18 years agoAdded support for dialects that have both sequences and autoincrementing PKs.
Jason Kirtland [Tue, 23 Oct 2007 01:47:21 +0000 (01:47 +0000)] 
Added support for dialects that have both sequences and autoincrementing PKs.

18 years ago- The post_exec() hook now gets invoked before autocommit fires.
Jason Kirtland [Tue, 23 Oct 2007 01:16:27 +0000 (01:16 +0000)] 
- The post_exec() hook now gets invoked before autocommit fires.

18 years agoChanged some columns from TEXT to VARCHAR for sapdb.
Jason Kirtland [Mon, 22 Oct 2007 23:01:02 +0000 (23:01 +0000)] 
Changed some columns from TEXT to VARCHAR for sapdb.

18 years ago- Now guarding against broken DB-APIs when wrapping their exceptions.
Jason Kirtland [Mon, 22 Oct 2007 19:24:02 +0000 (19:24 +0000)] 
- Now guarding against broken DB-APIs when wrapping their exceptions.
- Added an explicit test for exception wrapping.

18 years ago- sqlite will reflect "DECIMAL" as a numeric column
Mike Bayer [Mon, 22 Oct 2007 15:23:08 +0000 (15:23 +0000)] 
- sqlite will reflect "DECIMAL" as a numeric column

18 years agoexception message, [ticket:826]
Mike Bayer [Mon, 22 Oct 2007 15:20:15 +0000 (15:20 +0000)] 
exception message, [ticket:826]

18 years agobumped sqlite version for empty insert test to 3.4
Mike Bayer [Sun, 21 Oct 2007 16:45:58 +0000 (16:45 +0000)] 
bumped sqlite version for empty insert test to 3.4

18 years ago- the whole OperationContext/QueryContext/SelectionContext thing greatly scaled back;
Mike Bayer [Sun, 21 Oct 2007 16:36:34 +0000 (16:36 +0000)] 
- the whole OperationContext/QueryContext/SelectionContext thing greatly scaled back;
all MapperOptions process the Query and that's it, one very simpliied QueryContext object gets passed
around at query.compile() and query.instances() time
- slight optimization to MapperExtension allowing the mapper to check for the presence of an extended method, takes 3000 calls off of masseagerload.py test (only a slight increase in speed though)
- attempting to centralize the notion of a "path" along mappers/properties, need to define what that is better.  heading towards [ticket:777]...

18 years agoExcluding older sqlite versions from the new insert tests. Currently conservative...
Jason Kirtland [Sat, 20 Oct 2007 17:14:46 +0000 (17:14 +0000)] 
Excluding older sqlite versions from the new insert tests.  Currently conservative- 2.8 definitely fails, 3.3 works.  The 3.0 and 3.1 binaries from sqlite.org segfault for me so the version check should be revisited when possible.

18 years ago- Added contains operator (which generate a "LIKE %<other>%" clause).
Gaëtan de Menten [Fri, 19 Oct 2007 10:27:06 +0000 (10:27 +0000)] 
- Added contains operator (which generate a "LIKE %<other>%" clause).

- Added test coverage for endswith operator

18 years agoFixed empty (zero column) sqlite inserts, allowing inserts on
Jason Kirtland [Fri, 19 Oct 2007 07:02:48 +0000 (07:02 +0000)] 
Fixed empty (zero column) sqlite inserts, allowing inserts on
autoincrementing single column tables.

18 years ago- added test coverage for unknown type reflection, fixed
Mike Bayer [Thu, 18 Oct 2007 17:56:18 +0000 (17:56 +0000)] 
- added test coverage for unknown type reflection, fixed
  sqlite/mysql handling of type reflection for unknown types

18 years agotypos, PassiveDefault likes "text()" otherwise the argument is a literal
Mike Bayer [Wed, 17 Oct 2007 19:10:16 +0000 (19:10 +0000)] 
typos, PassiveDefault likes "text()" otherwise the argument is a literal

18 years agoBump!
Jason Kirtland [Wed, 17 Oct 2007 18:04:33 +0000 (18:04 +0000)] 
Bump!

18 years agoput a little note at the top directing users to the more *exciting* changes rel_0_4_0
Mike Bayer [Wed, 17 Oct 2007 17:53:12 +0000 (17:53 +0000)] 
put a little note at the top directing users to the more *exciting* changes

18 years agoUpdate for 0.4.0
Jason Kirtland [Wed, 17 Oct 2007 17:41:59 +0000 (17:41 +0000)] 
Update for 0.4.0

18 years agotypo
Mike Bayer [Wed, 17 Oct 2007 17:40:04 +0000 (17:40 +0000)] 
typo

18 years ago- removed __len__ from "dynamic" collection as it would require issuing
Mike Bayer [Wed, 17 Oct 2007 16:49:15 +0000 (16:49 +0000)] 
- removed __len__ from "dynamic" collection as it would require issuing
  a SQL "count()" operation, thus forcing all list evaluations to issue
  redundant SQL [ticket:818]

18 years agoIncluded 0.3.11 changelog
Jason Kirtland [Wed, 17 Oct 2007 16:04:58 +0000 (16:04 +0000)] 
Included 0.3.11 changelog

18 years agoMake ActiveMapper support viewonly property
Paul Johnston [Wed, 17 Oct 2007 11:23:39 +0000 (11:23 +0000)] 
Make ActiveMapper support viewonly property

18 years ago- Added support for UPDATE with LIMIT on mysql.
Jason Kirtland [Tue, 16 Oct 2007 23:59:05 +0000 (23:59 +0000)] 
- Added support for UPDATE with LIMIT on mysql.
- Added mysql dialect tests for SET columns and the in_ operator.

18 years agochange the in_ API to accept a sequence or a selectable [ticket:750]
Ants Aasma [Tue, 16 Oct 2007 22:57:05 +0000 (22:57 +0000)] 
change the in_ API to accept a sequence or a selectable [ticket:750]

18 years ago- string-based query param parsing/config file parser understands
Mike Bayer [Tue, 16 Oct 2007 21:33:21 +0000 (21:33 +0000)] 
- string-based query param parsing/config file parser understands
  wider range of string values for booleans [ticket:817]

18 years agoTypo fix (thanks Ben!)
Jason Kirtland [Tue, 16 Oct 2007 21:11:39 +0000 (21:11 +0000)] 
Typo fix (thanks Ben!)

18 years ago- Fixed SQL compiler's awareness of top-level column labels as used
Mike Bayer [Tue, 16 Oct 2007 16:03:59 +0000 (16:03 +0000)] 
- Fixed SQL compiler's awareness of top-level column labels as used
  in result-set processing; nested selects which contain the same column
  names don't affect the result or conflict with result-column metadata.

- query.get() and related functions (like many-to-one lazyloading)
  use compile-time-aliased bind parameter names, to prevent
  name conflicts with bind parameters that already exist in the
  mapped selectable.

18 years agoFixed a couple of typos & hardened against future similar errors.
Jason Kirtland [Tue, 16 Oct 2007 01:17:39 +0000 (01:17 +0000)] 
Fixed a couple of typos & hardened against future similar errors.

18 years ago- inline optimizations added to locate_dirty() which can greatly speed up
Mike Bayer [Mon, 15 Oct 2007 17:24:08 +0000 (17:24 +0000)] 
- inline optimizations added to locate_dirty() which can greatly speed up
  repeated calls to flush(), as occurs with autoflush=True [ticket:816]

18 years agofix typo in examples
Gaëtan de Menten [Mon, 15 Oct 2007 08:51:23 +0000 (08:51 +0000)] 
fix typo in examples

18 years ago- much more query verbiage
Mike Bayer [Mon, 15 Oct 2007 01:54:04 +0000 (01:54 +0000)] 
- much more query verbiage
- contains() operator doesn't need to generate negation criterion unless
many-to-many

18 years agodocumenting PropComparator behavior in orm tutorial
Mike Bayer [Sun, 14 Oct 2007 20:34:39 +0000 (20:34 +0000)] 
documenting PropComparator behavior in orm tutorial

18 years ago- PG reflection, upon seeing the default schema name being used explicitly
Mike Bayer [Sun, 14 Oct 2007 19:15:09 +0000 (19:15 +0000)] 
- PG reflection, upon seeing the default schema name being used explicitly
  as the "schema" argument in a Table, will assume that this is the the
  user's desired convention, and will explicitly set the "schema" argument
  in foreign-key-related reflected tables, thus making them match only
  with Table constructors that also use the explicit "schema" argument
  (even though its the default schema).
  In other words, SA assumes the user is being consistent in this usage.

18 years agoRestored unicode foreign key tests for [ticket:729].
Jason Kirtland [Sun, 14 Oct 2007 18:35:51 +0000 (18:35 +0000)] 
Restored unicode foreign key tests for [ticket:729].

18 years ago - backref remove object operation doesn't fail if the other-side
Mike Bayer [Sun, 14 Oct 2007 18:06:13 +0000 (18:06 +0000)] 
 - backref remove object operation doesn't fail if the other-side
collection doesn't contain the item, supports noload collections
[ticket:813]

18 years agoAdded a missing @supported.
Jason Kirtland [Sun, 14 Oct 2007 17:20:13 +0000 (17:20 +0000)] 
Added a missing @supported.

18 years ago- attempted to add a test for #622 / #751, but cant reproduce the failing condition
Mike Bayer [Sun, 14 Oct 2007 16:56:32 +0000 (16:56 +0000)] 
- attempted to add a test for #622 / #751, but cant reproduce the failing condition
- fixed major oracle bug introduced by r3561, since colnames come back as unicode now,
need to encode keys in setinputsizes() step

18 years agoAdded test for DBAPIError exception wrapping.
Jason Kirtland [Sun, 14 Oct 2007 16:31:21 +0000 (16:31 +0000)] 
Added test for DBAPIError exception wrapping.

18 years agoAdjusted zoomark ranges for 2.4 and 2.5.
Jason Kirtland [Sat, 13 Oct 2007 22:18:35 +0000 (22:18 +0000)] 
Adjusted zoomark ranges for 2.4 and 2.5.

18 years agoMoved author comment preventing python 2.3 from importing the module...
Jason Kirtland [Sat, 13 Oct 2007 21:42:08 +0000 (21:42 +0000)] 
Moved author comment preventing python 2.3 from importing the module...

18 years agoSnipped another generator expression.
Jason Kirtland [Sat, 13 Oct 2007 21:37:49 +0000 (21:37 +0000)] 
Snipped another generator expression.

18 years agoConverted errant generator expression.
Jason Kirtland [Sat, 13 Oct 2007 21:22:13 +0000 (21:22 +0000)] 
Converted errant generator expression.

18 years agoAssorted unused imports from pyflakes, docstring tweaks, formatting.
Jason Kirtland [Sat, 13 Oct 2007 21:03:49 +0000 (21:03 +0000)] 
Assorted unused imports from pyflakes, docstring tweaks, formatting.

18 years agoWinnowed __all__ for 'import * from sqlalchemy.engine'
Jason Kirtland [Sat, 13 Oct 2007 20:50:04 +0000 (20:50 +0000)] 
Winnowed __all__ for 'import * from sqlalchemy.engine'

18 years agoUnused imports.
Jason Kirtland [Sat, 13 Oct 2007 20:40:05 +0000 (20:40 +0000)] 
Unused imports.

18 years agoset svn:eol-style native
Jason Kirtland [Sat, 13 Oct 2007 20:35:42 +0000 (20:35 +0000)] 
set svn:eol-style native

18 years agoFixed reference bug in Connect, switched docstring format
Jason Kirtland [Sat, 13 Oct 2007 20:26:24 +0000 (20:26 +0000)] 
Fixed reference bug in Connect, switched docstring format

18 years agoRemoved a tab.
Jason Kirtland [Sat, 13 Oct 2007 20:11:36 +0000 (20:11 +0000)] 
Removed a tab.

18 years ago- sybase cleanups: unused imports, adjusted docstrings, trailing whitespace
Jason Kirtland [Sat, 13 Oct 2007 20:10:14 +0000 (20:10 +0000)] 
- sybase cleanups: unused imports, adjusted docstrings, trailing whitespace
- added sybase dialect test
- added sybase and access to generated docs

18 years agoFix ActiveMapper unit tests
Paul Johnston [Sat, 13 Oct 2007 00:01:11 +0000 (00:01 +0000)] 
Fix ActiveMapper unit tests

18 years agoA few fixes to the access dialect
Paul Johnston [Fri, 12 Oct 2007 23:39:28 +0000 (23:39 +0000)] 
A few fixes to the access dialect

18 years agoMake ActiveMapper use scoped_session instead of SessionContext
Paul Johnston [Fri, 12 Oct 2007 20:53:20 +0000 (20:53 +0000)] 
Make ActiveMapper use scoped_session instead of SessionContext

18 years agoFix broken update/delete queries on MSSQL when tables have a schema
Paul Johnston [Fri, 12 Oct 2007 20:08:54 +0000 (20:08 +0000)] 
Fix broken update/delete queries on MSSQL when tables have a schema

18 years agoMore ORDER BY, now with use_labels.
Jason Kirtland [Fri, 12 Oct 2007 18:08:11 +0000 (18:08 +0000)] 
More ORDER BY, now with use_labels.

18 years ago- Added small DESC exercise to test_order_by.
Jason Kirtland [Fri, 12 Oct 2007 17:46:42 +0000 (17:46 +0000)] 
- Added small DESC exercise to test_order_by.

18 years agofirebird: Fixed reflection for Integer and Numeric (after introducing Float column...
Roger Demetrescu [Fri, 12 Oct 2007 12:53:33 +0000 (12:53 +0000)] 
firebird: Fixed reflection for Integer and Numeric (after introducing Float column type). Need to review 'column_func' from reflecttable() and write some unit tests...

18 years agoFirebird: added Float and Time types (FBFloat and FBTime). Fixed BLOB SUB_TYPE for...
Roger Demetrescu [Fri, 12 Oct 2007 06:02:15 +0000 (06:02 +0000)] 
Firebird: added Float and Time types (FBFloat and FBTime). Fixed BLOB SUB_TYPE for TEXT and Binary types.
Firebird's string types are tested in testtypes.py

18 years agoAdded query coverage for ORDER BY over regular, aliased and DISTINCT columns.
Jason Kirtland [Thu, 11 Oct 2007 22:21:33 +0000 (22:21 +0000)] 
Added query coverage for ORDER BY over regular, aliased and DISTINCT columns.

18 years ago- sqlite housekeeping- added dialect test & moved tests there, pruned the dialect...
Jason Kirtland [Thu, 11 Oct 2007 17:35:13 +0000 (17:35 +0000)] 
- sqlite housekeeping- added dialect test & moved tests there, pruned the dialect's reserved words.

18 years agoapplied patch for pymssql 30-char limit
Rick Morrison [Wed, 10 Oct 2007 22:25:24 +0000 (22:25 +0000)] 
applied patch for pymssql 30-char limit

18 years ago- Expanded JoinTest further, exercising joins the ORM depends on explicitly
Jason Kirtland [Wed, 10 Oct 2007 20:42:58 +0000 (20:42 +0000)] 
- Expanded JoinTest further, exercising joins the ORM depends on explicitly
  in the 'sql' tests.

18 years ago- Fixed oracle 'use_ansi'-via-engine-url handling, added support for 'mode=sysdba...
Jason Kirtland [Wed, 10 Oct 2007 18:49:36 +0000 (18:49 +0000)] 
- Fixed oracle 'use_ansi'-via-engine-url handling, added support for 'mode=sysdba' et al.

18 years agosimilar type optimization for the Interval type
Gaëtan de Menten [Wed, 10 Oct 2007 16:15:29 +0000 (16:15 +0000)] 
similar type optimization for the Interval type

18 years agoMade the PickleType slightly faster.
Gaëtan de Menten [Wed, 10 Oct 2007 15:58:10 +0000 (15:58 +0000)] 
Made the PickleType slightly faster.

18 years agomake two-phase transactions work a bit better by letting psycopg do whatever it does...
Ants Aasma [Wed, 10 Oct 2007 15:38:01 +0000 (15:38 +0000)] 
make two-phase transactions work a bit better by letting psycopg do whatever it does for implicit
transaction starts

18 years agochangelog
Mike Bayer [Wed, 10 Oct 2007 15:28:45 +0000 (15:28 +0000)] 
changelog

18 years ago- initial sybase support checkin, [ticket:785]
Mike Bayer [Wed, 10 Oct 2007 15:19:28 +0000 (15:19 +0000)] 
- initial sybase support checkin, [ticket:785]

18 years ago- fixed Oracle non-ansi join syntax
Mike Bayer [Wed, 10 Oct 2007 02:30:00 +0000 (02:30 +0000)] 
- fixed Oracle non-ansi join syntax

18 years ago- Expanded insert speed test to cover execute as well as executemany
Jason Kirtland [Mon, 8 Oct 2007 18:51:51 +0000 (18:51 +0000)] 
- Expanded insert speed test to cover execute as well as executemany

18 years ago- Cleaned up visit_insert a bit, inserts are ~3% faster now.
Jason Kirtland [Mon, 8 Oct 2007 18:19:02 +0000 (18:19 +0000)] 
- Cleaned up visit_insert a bit, inserts are ~3% faster now.

18 years ago- a better fix for [ticket:810]. The cause was two phase commit/rollback not opening...
Ants Aasma [Mon, 8 Oct 2007 16:11:08 +0000 (16:11 +0000)] 
- a better fix for [ticket:810]. The cause was two phase commit/rollback not opening a new transaction as the dbapi implementations do.

18 years ago- fix multiple consequent two phase transactions not working with postgres. For some...
Ants Aasma [Mon, 8 Oct 2007 15:25:51 +0000 (15:25 +0000)] 
- fix multiple consequent two phase transactions not working with postgres. For some reason implicit transactions are not enough. [ticket:810]
- add an option to scoped session mapper extension to not automatically save new objects to session.

18 years agoFirebird now uses dialect.preparer to format sequences names.
Roger Demetrescu [Mon, 8 Oct 2007 05:07:54 +0000 (05:07 +0000)] 
Firebird now uses dialect.preparer to format sequences names.
UnicodeTest (reflection.py) runs ok now.

18 years ago- Expanded the outer join tests, now covering a situation that looked like it would...
Jason Kirtland [Mon, 8 Oct 2007 03:31:52 +0000 (03:31 +0000)] 
- Expanded the outer join tests, now covering a situation that looked like it would be wonky in oracle.

18 years ago- Loosened up test_cant_execute_join for oracle (probably) + bonus typo fix
Jason Kirtland [Mon, 8 Oct 2007 03:01:04 +0000 (03:01 +0000)] 
- Loosened up test_cant_execute_join for oracle (probably) + bonus typo fix
- Some docstring formatting waiting for pg to finish the tests...  waiting...

18 years ago- Added some outerjoin() execution exercises to the query tests.
Jason Kirtland [Mon, 8 Oct 2007 02:17:07 +0000 (02:17 +0000)] 
- Added some outerjoin() execution exercises to the query tests.

18 years ago- No longer using reserved-ish column names in MutableTypesTest.
Jason Kirtland [Sun, 7 Oct 2007 23:55:59 +0000 (23:55 +0000)] 
- No longer using reserved-ish column names in MutableTypesTest.

18 years ago- Actually fixed that testcascade issue. And friends- looks like a cut-n-paste-o.
Jason Kirtland [Sun, 7 Oct 2007 23:10:14 +0000 (23:10 +0000)] 
- Actually fixed that testcascade issue.  And friends- looks like a cut-n-paste-o.

18 years ago- Fixed bogus testcascade, also made fixture sequences optional.
Jason Kirtland [Sun, 7 Oct 2007 22:43:27 +0000 (22:43 +0000)] 
- Fixed bogus testcascade, also made fixture sequences optional.

18 years ago- Squashed assumption of transparent type coercion support in defaults test
Jason Kirtland [Sun, 7 Oct 2007 21:57:42 +0000 (21:57 +0000)] 
- Squashed assumption of transparent type coercion support in defaults test

18 years ago- Rewrote autoincrement tests: added new scenarios, changed the orm fetchid to explic...
Jason Kirtland [Sun, 7 Oct 2007 18:54:05 +0000 (18:54 +0000)] 
- Rewrote autoincrement tests: added new scenarios, changed the orm fetchid to explicit test of last_row_ids(), and now testing transactional/autocommit modes separately to help catch any subtle issues that may exist due to assumed cursor state during post_exec().

18 years ago- Tweaked unordered select tests to not be sensitive to result set order, also split...
Jason Kirtland [Sun, 7 Oct 2007 02:01:49 +0000 (02:01 +0000)] 
- Tweaked unordered select tests to not be sensitive to result set order, also split apart some tests (aliases) that sapdb has problems with.

18 years ago- fix to anonymous label generation of long table/column names [ticket:806]
Mike Bayer [Sun, 7 Oct 2007 01:58:40 +0000 (01:58 +0000)] 
- fix to anonymous label generation of long table/column names [ticket:806]

18 years agoFirebird dialect now uses SingletonThreadPool as its poolclass.
Roger Demetrescu [Sun, 7 Oct 2007 00:06:05 +0000 (00:06 +0000)] 
Firebird dialect now uses SingletonThreadPool as its poolclass.
(this fixes all "unsuccessful metadata update\n  object XXXXX is in use" test errors)

Minor fixes in tests

18 years ago- oracle does not implicitly convert to unicode for non-typed result
Mike Bayer [Sat, 6 Oct 2007 16:12:58 +0000 (16:12 +0000)] 
- oracle does not implicitly convert to unicode for non-typed result
  sets (i.e. when no TypeEngine/String/Unicode type is even being used;
  previously it was detecting DBAPI types and converting regardless).
  should fix [ticket:800]
- fixed oracle out_parameters, likely broke in beta6
- fixed oracle _normalize_case for encoded names, gets unicode reflection test to work
- a few extra tests tweaked/unsupported for oracle

18 years agoa typo on postgres returning test version check - change <8.4 -> <8.2
Ants Aasma [Sat, 6 Oct 2007 01:31:22 +0000 (01:31 +0000)] 
a typo on postgres returning test version check - change <8.4 -> <8.2

18 years ago- null foreign key on a m2o doesn't trigger a lazyload [ticket:803]
Mike Bayer [Sat, 6 Oct 2007 01:12:19 +0000 (01:12 +0000)] 
- null foreign key on a m2o doesn't trigger a lazyload [ticket:803]
- slight simpliication to mapper.populate_instance()
- lamenting the different codepaths between query._get() and DeferredLoader.lazyload()
- query._get() uses all()[0] for single-row load to avoid complexity of first() (same as LazyLoader)

18 years ago- fixed sqlite reflection of BOOL/BOOLEAN [ticket:808]
Mike Bayer [Fri, 5 Oct 2007 18:14:11 +0000 (18:14 +0000)] 
- fixed sqlite reflection of BOOL/BOOLEAN [ticket:808]

18 years ago- Sequences gain a basic dialect-specific kwargs bucket, like Tables.
Jason Kirtland [Thu, 4 Oct 2007 21:03:29 +0000 (21:03 +0000)] 
- Sequences gain a basic dialect-specific kwargs bucket, like Tables.