]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/log
thirdparty/sqlalchemy/sqlalchemy.git
18 years agoupdates, verbiage
Mike Bayer [Wed, 17 Jan 2007 21:44:54 +0000 (21:44 +0000)] 
updates, verbiage

18 years ago- fix to the initial checkfirst for tables to take current schema into account [ticke...
Mike Bayer [Wed, 17 Jan 2007 18:47:36 +0000 (18:47 +0000)] 
- fix to the initial checkfirst for tables to take current schema into account [ticket:424]

18 years agodocument "Accessing the Session"
Jonathan Ellis [Wed, 17 Jan 2007 18:25:37 +0000 (18:25 +0000)] 
document "Accessing the Session"

18 years agoadded testcase to ensure that type gets propigated from scalar subquery to its label
Mike Bayer [Tue, 16 Jan 2007 23:23:19 +0000 (23:23 +0000)] 
added testcase to ensure that type gets propigated from scalar subquery to its label

18 years agoadded "options" to exported query API
Mike Bayer [Tue, 16 Jan 2007 22:34:37 +0000 (22:34 +0000)] 
added "options" to exported query API

18 years agoverbiage updates, this is a work-in-progress (WIP)
Mike Bayer [Tue, 16 Jan 2007 03:29:26 +0000 (03:29 +0000)] 
verbiage updates, this is a work-in-progress (WIP)

18 years ago- added optional constructor to sql.ColumnCollection
Mike Bayer [Mon, 15 Jan 2007 21:54:16 +0000 (21:54 +0000)] 
- added optional constructor to sql.ColumnCollection
- mapper sets its "primary_key" attribute to be the ultimately decided primary_key column collection post-compilation
- added compare() method to MapperProperty, defines a comparison operation of the columns represented by the property to some value
- all the above combines into today's controversial feature: saying query.select_by(somerelationname=someinstance) will create the join of the primary key columns represented by "somerelationname"'s mapper to the actual primary key in "someinstance".
- docs for the above

18 years ago- trying to redefine a reflected primary key column as non-primary key raises an...
Mike Bayer [Mon, 15 Jan 2007 18:31:32 +0000 (18:31 +0000)] 
- trying to redefine a reflected primary key column as non-primary key raises an error

18 years ago[ticket:398]
Mike Bayer [Sun, 14 Jan 2007 21:21:02 +0000 (21:21 +0000)] 
[ticket:398]

18 years ago- default cascade is "save-update, merge"
Mike Bayer [Sun, 14 Jan 2007 21:10:40 +0000 (21:10 +0000)] 
- default cascade is "save-update, merge"
- added another merge unit test

18 years ago- postgres cursor option is now server_side_cursors=False; some users get bad results...
Mike Bayer [Sun, 14 Jan 2007 20:21:36 +0000 (20:21 +0000)] 
- postgres cursor option is now server_side_cursors=False; some users get bad results using them
so theyre off by default
- type system slightly modified to support TypeDecorators that can be overridden by the dialect
- added an NVarchar type to mssql (produces NVARCHAR), also MSUnicode which provides Unicode-translation
for the NVarchar regardless of dialect convert_unicode setting.

18 years ago- basic idea of "session.merge()" actually implemented. needs more testing.
Mike Bayer [Sat, 13 Jan 2007 01:39:15 +0000 (01:39 +0000)] 
- basic idea of "session.merge()" actually implemented.  needs more testing.

18 years agomore insure->ensure. this is going to be a hard habit to break...
Mike Bayer [Fri, 12 Jan 2007 03:07:08 +0000 (03:07 +0000)] 
more insure->ensure.  this is going to be a hard habit to break...

18 years ago- mysql is inconsistent with what kinds of quotes it uses in foreign keys during a
Mike Bayer [Fri, 12 Jan 2007 01:57:41 +0000 (01:57 +0000)] 
- mysql is inconsistent with what kinds of quotes it uses in foreign keys during a
  SHOW CREATE TABLE, reflection updated to accomodate for all three styles [ticket:420]

18 years ago - added "fetchmany()" support to ResultProxy
Mike Bayer [Thu, 11 Jan 2007 00:27:45 +0000 (00:27 +0000)] 
  - added "fetchmany()" support to ResultProxy

18 years ago- postgres no longer uses client-side cursors, uses more efficient server side
Mike Bayer [Wed, 10 Jan 2007 07:49:37 +0000 (07:49 +0000)] 
- postgres no longer uses client-side cursors, uses more efficient server side
  cursors via apparently undocumented psycopg2 behavior recently discovered on the
  mailing list.  disable it via create_engine('postgres://', client_side_cursors=True)

18 years agoadd test for max_order non_primary mapper from the list today
Jonathan Ellis [Tue, 9 Jan 2007 07:07:55 +0000 (07:07 +0000)] 
add test for max_order non_primary mapper from the list today

18 years ago- the "op()" function is now treated as an "operation", rather than a "comparison".
Mike Bayer [Mon, 8 Jan 2007 19:09:02 +0000 (19:09 +0000)] 
- the "op()" function is now treated as an "operation", rather than a "comparison".
  the difference is, an operation produces a BinaryExpression from which further operations
  can occur whereas comparison produces the more restrictive BooleanExpression

18 years agobrief mention of defer, undefer
Jonathan Ellis [Sun, 7 Jan 2007 20:52:32 +0000 (20:52 +0000)] 
brief mention of defer, undefer

18 years agoadded SVN link to setup.py description
Mike Bayer [Sat, 6 Jan 2007 22:26:37 +0000 (22:26 +0000)] 
added SVN link to setup.py description

18 years agotypo fix (thanks Paul J)
Rick Morrison [Sat, 6 Jan 2007 21:46:44 +0000 (21:46 +0000)] 
typo fix (thanks Paul J)

18 years ago- added a mutex to the mapper compilation step. ive been reluctant to add any kind
Mike Bayer [Sat, 6 Jan 2007 20:32:47 +0000 (20:32 +0000)] 
- added a mutex to the mapper compilation step.  ive been reluctant to add any kind
of threading anything to SA but this is one spot that its its really needed since mappers
are typically "global", and while their state does not change during normal operation, the
initial compilation step does modify internal state significantly, and this step usually
occurs not at module-level initialization time (unless you call compile()) but at first-request
time
- added "compile_mappers()" function as a shortcut to compiling all mappers

18 years agotweak to support reflecting eqlite columns that didnt specify a type
Mike Bayer [Sat, 6 Jan 2007 19:28:21 +0000 (19:28 +0000)] 
tweak to support reflecting eqlite columns that didnt specify a type

18 years ago- added an error message if you actually try to modify primary key values on an entity
Mike Bayer [Sat, 6 Jan 2007 03:33:53 +0000 (03:33 +0000)] 
- added an error message if you actually try to modify primary key values on an entity
and then flush it.

18 years agocopyright update
Mike Bayer [Fri, 5 Jan 2007 19:26:11 +0000 (19:26 +0000)] 
copyright update

18 years ago- default "timezone" setting is now False. this corresponds to Python's datetime
Mike Bayer [Fri, 5 Jan 2007 18:51:23 +0000 (18:51 +0000)] 
- default "timezone" setting is now False.  this corresponds to Python's datetime
behavior as well as Postgres' timestamp/time types (which is the only timezone-sensitive
dialect at the moment) [ticket:414]

18 years ago- fix to post_update to insure rows are updated even for non insert/delete scenarios
Mike Bayer [Fri, 5 Jan 2007 04:56:57 +0000 (04:56 +0000)] 
- fix to post_update to insure rows are updated even for non insert/delete scenarios
[ticket:413]

18 years agoRemoved "burned-in" schema name of "dbo". Suggested by janezj
Rick Morrison [Thu, 4 Jan 2007 04:25:47 +0000 (04:25 +0000)] 
Removed "burned-in" schema name of "dbo". Suggested by janezj

18 years agoPatch from Paul Johnston that refactors adodbapi vs. pymssql a bit, fixes broken...
Rick Morrison [Thu, 4 Jan 2007 04:12:36 +0000 (04:12 +0000)] 
Patch from Paul Johnston that refactors adodbapi vs. pymssql a bit, fixes broken COMMITS in adodbapi

18 years ago- Firebird fix to autoload multifield foreign keys [ticket:409]
Mike Bayer [Wed, 3 Jan 2007 02:25:02 +0000 (02:25 +0000)] 
- Firebird fix to autoload multifield foreign keys [ticket:409]
- Firebird NUMERIC type properly handles a type without precision [ticket:409]

18 years ago- order of constraint creation puts primary key first before all other constraints;
Mike Bayer [Wed, 3 Jan 2007 02:19:57 +0000 (02:19 +0000)] 
- order of constraint creation puts primary key first before all other constraints;
required for firebird, not a bad idea for others [ticket:408]

18 years ago- fixed bug in mapper refresh/expire whereby eager loaders didnt properly re-populate
Mike Bayer [Tue, 2 Jan 2007 19:33:41 +0000 (19:33 +0000)] 
- fixed bug in mapper refresh/expire whereby eager loaders didnt properly re-populate
item lists [ticket:407]

18 years ago- added "none" to the list of cascades, although im not sure if we should really...
Mike Bayer [Tue, 2 Jan 2007 03:43:09 +0000 (03:43 +0000)] 
- added "none" to the list of cascades, although im not sure if we should really allow "none" since it currently doesnt do anything (what should it do, cancel out the other cascades?)

18 years ago- invalid options sent to 'cascade' string will raise an exception [ticket:406]
Mike Bayer [Tue, 2 Jan 2007 03:39:26 +0000 (03:39 +0000)] 
- invalid options sent to 'cascade' string will raise an exception [ticket:406]

18 years ago- global "insure"->"ensure" change. in US english "insure" is actually
Mike Bayer [Mon, 1 Jan 2007 00:10:37 +0000 (00:10 +0000)] 
- global "insure"->"ensure" change.  in US english "insure" is actually
largely interchangeable with "ensure" (so says the dictionary), so I'm not
completely illiterate, but its definitely sub-optimal to "ensure" which is
non-ambiguous.

18 years ago- speed enhancements to ORM object instantiation, eager loading of rows
Mike Bayer [Thu, 28 Dec 2006 08:30:43 +0000 (08:30 +0000)] 
- speed enhancements to ORM object instantiation, eager loading of rows

18 years ago- fix to correlation of subqueries when the column list of the select statement
Mike Bayer [Thu, 28 Dec 2006 00:27:58 +0000 (00:27 +0000)] 
- fix to correlation of subqueries when the column list of the select statement
is constructed with individual calls to append_column(); this fixes an ORM
bug whereby nested select statements were not getting correlated with the
main select generated by the Query object.

18 years ago- fixes to postgres reflection to better handle when schema names are present;
Mike Bayer [Sun, 24 Dec 2006 04:45:11 +0000 (04:45 +0000)] 
- fixes to postgres reflection to better handle when schema names are present;
thanks to jason (at) ncsmags.com [ticket:402]

18 years ago- fix to MapperExtension create_instance so that entity_name properly associated
Mike Bayer [Tue, 19 Dec 2006 20:52:32 +0000 (20:52 +0000)] 
- fix to MapperExtension create_instance so that entity_name properly associated
with new instance

18 years agoreversing last commit
Rick Morrison [Mon, 18 Dec 2006 02:17:13 +0000 (02:17 +0000)] 
reversing last commit

18 years agoadded missing ref to between in sql.py __all__
Rick Morrison [Sun, 17 Dec 2006 23:14:53 +0000 (23:14 +0000)] 
added missing ref to between in sql.py __all__

18 years ago- added "BIGSERIAL" support for postgres table with PGBigInteger/autoincrement
Mike Bayer [Fri, 15 Dec 2006 16:06:14 +0000 (16:06 +0000)] 
- added "BIGSERIAL" support for postgres table with PGBigInteger/autoincrement

18 years agoPGBigInteger subclasses PGInteger so it gets used
Mike Bayer [Fri, 15 Dec 2006 16:01:24 +0000 (16:01 +0000)] 
PGBigInteger subclasses PGInteger so it gets used

18 years agoedits
Mike Bayer [Fri, 15 Dec 2006 08:06:45 +0000 (08:06 +0000)] 
edits

18 years agoformatting
Mike Bayer [Fri, 15 Dec 2006 08:01:39 +0000 (08:01 +0000)] 
formatting

18 years agofixed the raise for mysql to re-raise the error rel_0_3_3
Mike Bayer [Fri, 15 Dec 2006 07:43:42 +0000 (07:43 +0000)] 
fixed the raise for mysql to re-raise the error

18 years agofix to the fix for [ticket:396] plus a unit test
Mike Bayer [Fri, 15 Dec 2006 01:07:05 +0000 (01:07 +0000)] 
fix to the fix for [ticket:396] plus a unit test

18 years agoadded additional unit test to test that commit errors are detected, rollback occurs...
Mike Bayer [Thu, 14 Dec 2006 23:10:10 +0000 (23:10 +0000)] 
added additional unit test to test that commit errors are detected, rollback occurs in an except:

18 years agoadded InnoDB for mysql so that all tranactional tests pass for mysql
Mike Bayer [Thu, 14 Dec 2006 23:03:43 +0000 (23:03 +0000)] 
added InnoDB for mysql so that all tranactional tests pass for mysql

18 years ago- patch that makes MySQL rowcount work correctly! [ticket:396]
Mike Bayer [Wed, 13 Dec 2006 21:06:38 +0000 (21:06 +0000)] 
- patch that makes MySQL rowcount work correctly! [ticket:396]

18 years ago- fixed QueuePool bug whereby its better able to reconnect to a database
Mike Bayer [Wed, 13 Dec 2006 20:45:34 +0000 (20:45 +0000)] 
- fixed QueuePool bug whereby its better able to reconnect to a database
that was not reachable, also fixed dispose() method

18 years agonew collections example
Mike Bayer [Tue, 12 Dec 2006 21:42:13 +0000 (21:42 +0000)] 
new collections example

18 years ago- fixes to passive_deletes flag, lazy=None (noload) flag
Mike Bayer [Tue, 12 Dec 2006 19:22:28 +0000 (19:22 +0000)] 
- fixes to passive_deletes flag, lazy=None (noload) flag
- added example/docs for dealing with large collections
- added object_session() method to sqlalchemy namespace

18 years ago- string-based FROM clauses fixed, i.e. select(..., from_obj=["sometext"])
Mike Bayer [Tue, 12 Dec 2006 02:17:32 +0000 (02:17 +0000)] 
- string-based FROM clauses fixed, i.e. select(..., from_obj=["sometext"])

18 years agoadded style for page control rel_0_3_2
Mike Bayer [Sun, 10 Dec 2006 18:05:10 +0000 (18:05 +0000)] 
added style for page control

18 years agomoved page control links
Mike Bayer [Sun, 10 Dec 2006 18:04:11 +0000 (18:04 +0000)] 
moved page control links

18 years agowould help to have the files all checked in....
Mike Bayer [Sun, 10 Dec 2006 17:50:18 +0000 (17:50 +0000)] 
would help to have the files all checked in....

18 years agoremoving references to 0.2 series from docs
Mike Bayer [Sun, 10 Dec 2006 17:42:31 +0000 (17:42 +0000)] 
removing references to 0.2 series from docs
upgrade version number to 0.3.2

18 years agoclarify docs for query.instances() [ticket:386]
Mike Bayer [Sat, 9 Dec 2006 04:16:15 +0000 (04:16 +0000)] 
clarify docs for query.instances() [ticket:386]

18 years agodocstring fix for [ticket:381]
Mike Bayer [Sat, 9 Dec 2006 04:11:16 +0000 (04:11 +0000)] 
docstring fix for [ticket:381]

18 years ago- MySQL bool type fix: [ticket:307]
Mike Bayer [Sat, 9 Dec 2006 04:06:34 +0000 (04:06 +0000)] 
- MySQL bool type fix: [ticket:307]

18 years agoadded SmallInteger to __all__ list (now we have both SmallInteger/Smallinteger.....)
Mike Bayer [Sat, 9 Dec 2006 04:02:36 +0000 (04:02 +0000)] 
added SmallInteger to __all__ list (now we have both SmallInteger/Smallinteger.....)

18 years ago- added onupdate and ondelete keyword arguments to ForeignKey; propigate
Mike Bayer [Sat, 9 Dec 2006 04:00:35 +0000 (04:00 +0000)] 
- added onupdate and ondelete keyword arguments to ForeignKey; propigate
to underlying ForeignKeyConstraint if present.  (dont propigate in the
other direction, however)
- patched attribute speed enhancement [ticket:389] courtesy Sébastien Lelong

18 years ago- support for None as precision/length in numeric types for postgres, sqlite, mysql
Mike Bayer [Sat, 9 Dec 2006 03:21:18 +0000 (03:21 +0000)] 
- support for None as precision/length in numeric types for postgres, sqlite, mysql
- postgres reflection fixes: [ticket:349] [ticket:382]

18 years ago- unit test for strong refs
Mike Bayer [Sat, 9 Dec 2006 02:46:09 +0000 (02:46 +0000)] 
- unit test for strong refs
- unit test to test [ticket:354]

18 years ago- identity map in Session is by default *no longer weak referencing*.
Mike Bayer [Sat, 9 Dec 2006 01:08:25 +0000 (01:08 +0000)] 
- identity map in Session is by default *no longer weak referencing*.
to have it be weak referencing, use create_session(weak_identity_map=True)
- some fixes to OrderedProperties

18 years agopickle example for dmiller
Mike Bayer [Sat, 9 Dec 2006 00:09:14 +0000 (00:09 +0000)] 
pickle example for dmiller

18 years agofix in OrderedProperties to allow pickling
Mike Bayer [Fri, 8 Dec 2006 21:50:12 +0000 (21:50 +0000)] 
fix in OrderedProperties to allow pickling

18 years agocursors needs to be weak key
Mike Bayer [Fri, 8 Dec 2006 21:40:10 +0000 (21:40 +0000)] 
cursors needs to be weak key

18 years agodocs/examples/unittests for remote_side
Mike Bayer [Fri, 8 Dec 2006 20:50:48 +0000 (20:50 +0000)] 
docs/examples/unittests for remote_side

18 years ago the pool fix is more important
Mike Bayer [Fri, 8 Dec 2006 20:22:06 +0000 (20:22 +0000)] 
 the pool fix is more important

18 years agoassign_mapper note
Mike Bayer [Fri, 8 Dec 2006 19:16:33 +0000 (19:16 +0000)] 
assign_mapper note

18 years ago- fix to connection pool _close() to properly clean up, fixes
Mike Bayer [Fri, 8 Dec 2006 18:47:20 +0000 (18:47 +0000)] 
- fix to connection pool _close() to properly clean up, fixes
MySQL synchronization errors [ticket:387]

18 years ago- MySQL detects errors 2006 (server has gone away) and 2014
Mike Bayer [Fri, 8 Dec 2006 03:27:09 +0000 (03:27 +0000)] 
- MySQL detects errors 2006 (server has gone away) and 2014
(commands out of sync) and invalidates the connection on which it occured.

18 years agomoved _impl_dict to an external weakref so that TypeEngine objects can be pickled
Mike Bayer [Wed, 6 Dec 2006 21:37:25 +0000 (21:37 +0000)] 
moved _impl_dict to an external weakref so that TypeEngine objects can be pickled

18 years agogot a rudimentary one-page display going
Mike Bayer [Tue, 5 Dec 2006 21:42:31 +0000 (21:42 +0000)] 
got a rudimentary one-page display going

18 years agodoc adjust for "dirty" list behavior
Mike Bayer [Tue, 5 Dec 2006 18:21:27 +0000 (18:21 +0000)] 
doc adjust for "dirty" list behavior

18 years agomade backrefs aware of "post_update" and "viewonly" so it doesnt have to be explicitl...
Mike Bayer [Tue, 5 Dec 2006 03:16:35 +0000 (03:16 +0000)] 
made backrefs aware of "post_update" and "viewonly" so it doesnt have to be explicitly propigated; also backrefs shouldnt fire off in a post_update situation.

18 years agofixed up some debug logging to be conditional, adds speed. made some
Mike Bayer [Mon, 4 Dec 2006 21:17:05 +0000 (21:17 +0000)] 
fixed up some debug logging to be conditional, adds speed.  made some
attribute-related lambdas more direct.

18 years agoremoved useless line
Mike Bayer [Sun, 3 Dec 2006 18:25:05 +0000 (18:25 +0000)] 
removed useless line

18 years agoadded 'remote_side' functionality to lazy clause generation
Mike Bayer [Sat, 2 Dec 2006 23:36:59 +0000 (23:36 +0000)] 
added 'remote_side' functionality  to lazy clause generation

18 years ago- added "remote_side" argument to relation(), used only with self-referential
Mike Bayer [Sat, 2 Dec 2006 05:59:50 +0000 (05:59 +0000)] 
- added "remote_side" argument to relation(), used only with self-referential
mappers to force the direction of the parent/child relationship.  replaces
the usage of the "foreignkey" parameter for "switching" the direction;
while "foreignkey" can still be used to "switch" the direction of a parent/
child relationship, this usage is deprecated; "foreignkey" should always
indicate the actual foreign key columns from now on.

18 years agoadded mass eagerloading profile, debug log in EagerLoader conditional based on flag
Mike Bayer [Fri, 1 Dec 2006 19:45:04 +0000 (19:45 +0000)] 
added mass eagerloading profile, debug log in EagerLoader conditional based on flag

18 years agoadded conditional flag to debug log statements in mapper so that string formats dont...
Mike Bayer [Fri, 1 Dec 2006 18:41:33 +0000 (18:41 +0000)] 
added conditional flag to debug log statements in mapper so that string formats dont occur
updated massload test to work with 0.3

18 years ago- improved support for disabling save-update cascade via cascade="none" etc.
Mike Bayer [Thu, 30 Nov 2006 00:08:46 +0000 (00:08 +0000)] 
- improved support for disabling save-update cascade via cascade="none" etc.

18 years ago- sending a selectable to an IN no longer creates a "union" out of multiple
Mike Bayer [Wed, 29 Nov 2006 22:13:58 +0000 (22:13 +0000)] 
- sending a selectable to an IN no longer creates a "union" out of multiple
selects; only one selectable to an IN is allowed now (make a union yourself
if union is needed; explicit better than implicit, dont guess, etc.)

18 years ago- fix to session.update() to preserve "dirty" status of incoming object
Mike Bayer [Wed, 29 Nov 2006 21:50:45 +0000 (21:50 +0000)] 
- fix to session.update() to preserve "dirty" status of incoming object

18 years agooops, KeyError fix for [ticket:380]
Mike Bayer [Wed, 29 Nov 2006 21:43:21 +0000 (21:43 +0000)] 
oops, KeyError fix for [ticket:380]

18 years agofixed has_key exception to be KeyError [ticket:380]
Mike Bayer [Wed, 29 Nov 2006 17:25:18 +0000 (17:25 +0000)] 
fixed has_key exception to be KeyError [ticket:380]

18 years ago- added extra check to "stop" cascading on save/update/save-update if
Mike Bayer [Wed, 29 Nov 2006 17:16:41 +0000 (17:16 +0000)] 
- added extra check to "stop" cascading on save/update/save-update if
an instance is detected to be already in the session.

18 years agoadded label() function to Select class, useable only with select
Mike Bayer [Mon, 27 Nov 2006 19:42:33 +0000 (19:42 +0000)] 
added label() function to Select class, useable only with select
that has scalar=True

18 years agoremoved old function
Mike Bayer [Mon, 27 Nov 2006 01:27:10 +0000 (01:27 +0000)] 
removed old function

18 years ago- made kwargs parsing to Table strict; removed various obsoluete "redefine=True"...
Mike Bayer [Sun, 26 Nov 2006 02:36:27 +0000 (02:36 +0000)] 
- made kwargs parsing to Table strict; removed various obsoluete "redefine=True" kw's from the unit tests
- documented instance variables in ANSICompiler
- fixed [ticket:120], adds "inline_params" set to ANSICompiler which DefaultDialect picks up on when
determining defaults.  added unittests to query.py
- additionally fixed up the behavior of the "values" parameter on _Insert/_Update
- more cleanup to sql/Select - more succinct organization of FROM clauses, removed silly _process_from_dict
methods and JoinMarker object

18 years agosome clenaup on the "correlation" API on the _Select class
Mike Bayer [Sat, 25 Nov 2006 22:09:27 +0000 (22:09 +0000)] 
some clenaup on the "correlation" API on the _Select class

18 years ago- cleanup on some instance vars in Select (is_scalar, is_subquery, _froms is __froms...
Mike Bayer [Sat, 25 Nov 2006 21:32:26 +0000 (21:32 +0000)] 
- cleanup on some instance vars in Select (is_scalar, is_subquery, _froms is __froms, removed unused 'nowait', '_text', etc)
- cleaned up __repr__ on Column, AbstractTypeEngine
- added standalone intersect(_all), except(_all) functions, unit tests illustrating nesting patterns [ticket:247]

18 years agoadded mapper return value to assign_mapper
Mike Bayer [Fri, 24 Nov 2006 19:49:13 +0000 (19:49 +0000)] 
added mapper return value to assign_mapper

18 years agofix to oracle types test, added RAW type [ticket:378]
Mike Bayer [Tue, 21 Nov 2006 22:20:31 +0000 (22:20 +0000)] 
fix to oracle types test, added RAW type [ticket:378]

18 years agofix to previous checkin
Mike Bayer [Tue, 21 Nov 2006 22:10:27 +0000 (22:10 +0000)] 
fix to previous checkin

18 years ago[ticket:373]
Mike Bayer [Tue, 21 Nov 2006 22:04:31 +0000 (22:04 +0000)] 
[ticket:373]

18 years ago[ticket:366]
Mike Bayer [Tue, 21 Nov 2006 21:59:03 +0000 (21:59 +0000)] 
[ticket:366]