[commits] Horde branch master updated. 6a56b593fe2461d874c6cf60789a93dd0014791d

Chuck Hagenbuch chuck at horde.org
Sun Dec 13 17:10:30 UTC 2009


The branch "master" has been updated.
The following is a summary of the commits.

from: 120f14b59c5a712d977beb432d52c9a1be21c28a

1935513 initial port of Mad migration libs
2a72e18 add Mad migration tests
dcad7e0 first pass on migration tests
2e53052 tests are ported, now need to fix things
4adfd3e Fix usage of Horde_Support_Timer.
61737a1 Show correct unit (seconds) of Horde_Db_Timer in log message.
338be01 Fix inclusion of PHPUnit
a58c848 Enable tests for ALTER functionality
5aa4635 Start fixing migration tests
d6e9019 Change Horde_Db_Migration_Base constructor
3bcb91f Set type first so that it can be used when detecting defaults
54387f1 Make TableDefinition iteratable (across columns)
defa5b9 Fix detecting default string values
a6d248d Implement workarounds for missing SQLite ALTER TABLE functionality.
c43180a Merge branch 'db-migrations'
6a56b59 There's logic in this test suite for dealing with whether or not adapters are available that isn't in Horde_Test_AllTests.

-----------------------------------------------------------------------

commit 1935513c6de207fe122c4665fc41e66547e666ee
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Mon Feb 16 15:05:08 2009 -0500

    initial port of Mad migration libs

 framework/Db/lib/Horde/Db/Migration/Base.php      |  161 +++++++++++++
 framework/Db/lib/Horde/Db/Migration/Exception.php |   26 ++
 framework/Db/lib/Horde/Db/Migration/Migrator.php  |  265 +++++++++++++++++++++
 3 files changed, 452 insertions(+), 0 deletions(-)
 create mode 100644 framework/Db/lib/Horde/Db/Migration/Base.php
 create mode 100644 framework/Db/lib/Horde/Db/Migration/Exception.php
 create mode 100644 framework/Db/lib/Horde/Db/Migration/Migrator.php

http://git.horde.org/co.php/framework/Db/lib/Horde/Db/Migration/Base.php?rt=horde-git&r=1935513c6de207fe122c4665fc41e66547e666ee
http://git.horde.org/co.php/framework/Db/lib/Horde/Db/Migration/Exception.php?rt=horde-git&r=1935513c6de207fe122c4665fc41e66547e666ee
http://git.horde.org/co.php/framework/Db/lib/Horde/Db/Migration/Migrator.php?rt=horde-git&r=1935513c6de207fe122c4665fc41e66547e666ee

-----------------------------------------------------------------------

commit 2a72e18f7fba87323b8c5062b757c700474ca42e
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Mon Feb 16 15:07:04 2009 -0500

    add Mad migration tests

 framework/Db/test/Horde/Db/Migration/BaseTest.php                 |  525 +++++
 framework/Db/test/Horde/Db/Migration/MigratorTest.php             |  213 ++
 .../Horde/Db/fixtures/migrations/1_users_have_last_names1.php     |   14 +
 .../Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php |   17 +
 .../test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php   |   17 +
 .../Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php |   20 +
 .../migrations_with_duplicate/1_users_have_last_names2.php        |   14 +
 .../fixtures/migrations_with_duplicate/2_we_need_reminders2.php   |   17 +
 .../Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php |   12 +
 .../fixtures/migrations_with_duplicate/3_innocent_jointable2.php  |   17 +
 .../1000_users_have_middle_names.php                              |   14 +
 .../migrations_with_missing_versions/1_users_have_last_names3.php |   14 +
 .../migrations_with_missing_versions/3_we_need_reminders.php      |   17 +
 .../migrations_with_missing_versions/4_innocent_jointable3.php    |   17 +
 14 files changed, 928 insertions(+), 0 deletions(-)
 create mode 100644 framework/Db/test/Horde/Db/Migration/BaseTest.php
 create mode 100644 framework/Db/test/Horde/Db/Migration/MigratorTest.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations/1_users_have_last_names1.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/1_users_have_last_names2.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/2_we_need_reminders2.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_innocent_jointable2.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1000_users_have_middle_names.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1_users_have_last_names3.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/3_we_need_reminders.php
 create mode 100644 framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/4_innocent_jointable3.php

http://git.horde.org/co.php/framework/Db/test/Horde/Db/Migration/BaseTest.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/Migration/MigratorTest.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations/1_users_have_last_names1.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/1_users_have_last_names2.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/2_we_need_reminders2.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_innocent_jointable2.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1000_users_have_middle_names.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1_users_have_last_names3.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/3_we_need_reminders.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/4_innocent_jointable3.php?rt=horde-git&r=2a72e18f7fba87323b8c5062b757c700474ca42e

-----------------------------------------------------------------------

commit dcad7e02f5dca586fb2e727e19f27b15c969afa1
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Mon Feb 16 15:35:23 2009 -0500

    first pass on migration tests

 framework/Db/test/Horde/Db/AllTests.php                           |   20 +++--
 framework/Db/test/Horde/Db/Migration/BaseTest.php                 |   13 ++-
 .../Horde/Db/fixtures/migrations/1_users_have_last_names1.php     |    2 +-
 .../Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php |    2 +-
 .../test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php   |    2 +-
 .../Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php |    2 +-
 .../migrations_with_duplicate/1_users_have_last_names2.php        |    2 +-
 .../fixtures/migrations_with_duplicate/2_we_need_reminders2.php   |    2 +-
 .../Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php |    4 +-
 .../fixtures/migrations_with_duplicate/3_innocent_jointable2.php  |    2 +-
 .../1000_users_have_middle_names.php                              |    2 +-
 .../migrations_with_missing_versions/1_users_have_last_names3.php |    2 +-
 12 files changed, 34 insertions(+), 21 deletions(-)

http://git.horde.org/diff.php/framework/Db/test/Horde/Db/AllTests.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Migration/BaseTest.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations/1_users_have_last_names1.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/1_users_have_last_names2.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/2_we_need_reminders2.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_innocent_jointable2.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1000_users_have_middle_names.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1_users_have_last_names3.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1

-----------------------------------------------------------------------

commit 2e5305216fa36f7839a7bc6dac2092c19d6dd250
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Mon Feb 16 16:33:17 2009 -0500

    tests are ported, now need to fix things

 framework/Db/lib/Horde/Db/Migration/Migrator.php      |    4 +-
 framework/Db/test/Horde/Db/Migration/BaseTest.php     |  190 ++++++++++-------
 framework/Db/test/Horde/Db/Migration/MigratorTest.php |  133 +++++-------
 3 files changed, 169 insertions(+), 158 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Migration/Migrator.php?rt=horde-git&r1=1935513c6de207fe122c4665fc41e66547e666ee&r2=2e5305216fa36f7839a7bc6dac2092c19d6dd250
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Migration/BaseTest.php?rt=horde-git&r1=dcad7e02f5dca586fb2e727e19f27b15c969afa1&r2=2e5305216fa36f7839a7bc6dac2092c19d6dd250
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Migration/MigratorTest.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=2e5305216fa36f7839a7bc6dac2092c19d6dd250

-----------------------------------------------------------------------

commit 4adfd3e11b4d9b36b61386dc83101d3d309c9d58
Author: Mike Naberezny <mike at naberezny.com>
Date:   Sun Mar 29 13:28:06 2009 -0700

    Fix usage of Horde_Support_Timer.

 framework/Db/lib/Horde/Db/Migration/Base.php |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Migration/Base.php?rt=horde-git&r1=1935513c6de207fe122c4665fc41e66547e666ee&r2=4adfd3e11b4d9b36b61386dc83101d3d309c9d58

-----------------------------------------------------------------------

commit 61737a161c882b3e4a5f9461d057091f93fce2d4
Author: Mike Naberezny <mike at naberezny.com>
Date:   Sun Mar 29 13:32:51 2009 -0700

    Show correct unit (seconds) of Horde_Db_Timer in log message.

 framework/Db/lib/Horde/Db/Adapter/Abstract.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Abstract.php?rt=horde-git&r1=2f6bdee49843c5395fb4cf76a03d4eb0d8fae17b&r2=61737a161c882b3e4a5f9461d057091f93fce2d4

-----------------------------------------------------------------------

commit 338be01bb2cc19fa3ba31a8137388c79d0c2af9b
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:53:33 2009 -0500

    Fix inclusion of PHPUnit

 framework/Db/test/Horde/Db/AllTests.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/framework/Db/test/Horde/Db/AllTests.php?rt=horde-git&r1=dcad7e02f5dca586fb2e727e19f27b15c969afa1&r2=338be01bb2cc19fa3ba31a8137388c79d0c2af9b

-----------------------------------------------------------------------

commit a58c848f7780cb78afe1ccc322a2dd832fc84e5f
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:54:41 2009 -0500

    Enable tests for ALTER functionality

 framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php |   46 +++--------------
 1 files changed, 8 insertions(+), 38 deletions(-)

http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=a58c848f7780cb78afe1ccc322a2dd832fc84e5f

-----------------------------------------------------------------------

commit 5aa4635ba5eb81cd3f68ec55e20053e44b8e8050
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:55:16 2009 -0500

    Start fixing migration tests

 framework/Db/test/Horde/Db/Migration/BaseTest.php |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Migration/BaseTest.php?rt=horde-git&r1=2e5305216fa36f7839a7bc6dac2092c19d6dd250&r2=5aa4635ba5eb81cd3f68ec55e20053e44b8e8050

-----------------------------------------------------------------------

commit d6e9019dcba9e8c448d76167ac58b553975fb296
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:55:42 2009 -0500

    Change Horde_Db_Migration_Base constructor

 framework/Db/lib/Horde/Db/Migration/Base.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Migration/Base.php?rt=horde-git&r1=4adfd3e11b4d9b36b61386dc83101d3d309c9d58&r2=d6e9019dcba9e8c448d76167ac58b553975fb296

-----------------------------------------------------------------------

commit 3bcb91f63c75dd42a11b597f17557f1cdf9da76e
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:56:42 2009 -0500

    Set type first so that it can be used when detecting defaults

 framework/Db/lib/Horde/Db/Adapter/Abstract/Column.php |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Abstract/Column.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=3bcb91f63c75dd42a11b597f17557f1cdf9da76e

-----------------------------------------------------------------------

commit 54387f10f1f7f9a6bafb71a835bccb20ac4809c7
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:57:20 2009 -0500

    Make TableDefinition iteratable (across columns)

 framework/Db/lib/Horde/Db/Adapter/Abstract/TableDefinition.php |   14 ++++++-
 1 files changed, 12 insertions(+), 2 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Abstract/TableDefinition.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=54387f10f1f7f9a6bafb71a835bccb20ac4809c7

-----------------------------------------------------------------------

commit defa5b96157bd528dcf43bde662670aa525b9175
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:57:50 2009 -0500

    Fix detecting default string values

 framework/Db/lib/Horde/Db/Adapter/Sqlite/Column.php |   33 +++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Sqlite/Column.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=defa5b96157bd528dcf43bde662670aa525b9175

-----------------------------------------------------------------------

commit a6d248db09c72352af923250f4136eb90ad68744
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 11:58:16 2009 -0500

    Implement workarounds for missing SQLite ALTER TABLE functionality.

 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php |  244 ++++++++++---------
 1 files changed, 132 insertions(+), 112 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=a6d248db09c72352af923250f4136eb90ad68744

-----------------------------------------------------------------------

commit c43180a2f940f4918250fd5d38e43ba83cc0453c
Merge: 120f14b a6d248d
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 12:06:35 2009 -0500

    Merge branch 'db-migrations'
    
    Conflicts:
    	framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php
    	framework/Db/test/Horde/Db/AllTests.php

 framework/Db/lib/Horde/Db/Adapter/Base.php                        |    2 +-
 framework/Db/lib/Horde/Db/Adapter/Base/Column.php                 |    9 +-
 framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php        |   14 +-
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Column.php               |   33 +
 framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php               |  244 +-
 framework/Db/lib/Horde/Db/Migration/Base.php                      |  165 ++
 framework/Db/lib/Horde/Db/Migration/Exception.php                 |   26 +
 framework/Db/lib/Horde/Db/Migration/Migrator.php                  |  267 ++
 framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php             |   46 +-
 framework/Db/test/Horde/Db/Migration/BaseTest.php                 |  556 +++++
 framework/Db/test/Horde/Db/Migration/MigratorTest.php             |  196 ++
 .../Horde/Db/fixtures/migrations/1_users_have_last_names1.php     |   14 +
 .../Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php |   17 +
 .../test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php   |   17 +
 .../Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php |   20 +
 .../migrations_with_duplicate/1_users_have_last_names2.php        |   14 +
 .../fixtures/migrations_with_duplicate/2_we_need_reminders2.php   |   17 +
 .../Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php |   12 +
 .../fixtures/migrations_with_duplicate/3_innocent_jointable2.php  |   17 +
 .../1000_users_have_middle_names.php                              |   14 +
 .../migrations_with_missing_versions/1_users_have_last_names3.php |   14 +
 .../migrations_with_missing_versions/3_we_need_reminders.php      |   17 +
 .../migrations_with_missing_versions/4_innocent_jointable3.php    |   17 +
 23 files changed, 1591 insertions(+), 157 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base.php?rt=horde-git&r1=5950629d8f5cd7784c57609509449b176f73aa0a&r2=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base/Column.php?rt=horde-git&r1=5950629d8f5cd7784c57609509449b176f73aa0a&r2=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Base/TableDefinition.php?rt=horde-git&r1=5950629d8f5cd7784c57609509449b176f73aa0a&r2=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Sqlite/Column.php?rt=horde-git&r1=5950629d8f5cd7784c57609509449b176f73aa0a&r2=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Adapter/Sqlite/Schema.php?rt=horde-git&r1=5950629d8f5cd7784c57609509449b176f73aa0a&r2=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/lib/Horde/Db/Migration/Base.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/lib/Horde/Db/Migration/Exception.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/lib/Horde/Db/Migration/Migrator.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Adapter/Pdo/SqliteTest.php?rt=horde-git&r1=5b3ded8048527f5c6a25dfa3b8e642bf6277c26c&r2=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/Migration/BaseTest.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/Migration/MigratorTest.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations/1_users_have_last_names1.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/1_users_have_last_names2.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/2_we_need_reminders2.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_innocent_jointable2.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1000_users_have_middle_names.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1_users_have_last_names3.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/3_we_need_reminders.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c
http://git.horde.org/co.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/4_innocent_jointable3.php?rt=horde-git&r=c43180a2f940f4918250fd5d38e43ba83cc0453c

-----------------------------------------------------------------------

commit 6a56b593fe2461d874c6cf60789a93dd0014791d
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Dec 13 12:09:46 2009 -0500

    There's logic in this test suite for dealing with whether or not adapters are
    available that isn't in Horde_Test_AllTests.

 framework/Db/test/Horde/Db/AllTests.php |   46 +++++++++++++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)

http://git.horde.org/diff.php/framework/Db/test/Horde/Db/AllTests.php?rt=horde-git&r1=cca2f3d6358e956bf0624c07c61f0cffa2e565a5&r2=6a56b593fe2461d874c6cf60789a93dd0014791d




More information about the commits mailing list