[libdbd-sqlite3-perl] branch master updated (53d7825 -> 388f440)

Damyan Ivanov dmn at moszumanska.debian.org
Tue Nov 21 20:08:31 UTC 2017


This is an automated email from the git hooks/post-receive script.

dmn pushed a change to branch master
in repository libdbd-sqlite3-perl.

      from  53d7825   update changelog
       new  f1a2c6e   declare conformance with Policy 4.1.1 (no changes needed)
       new  07086a1   override a lintian warning about a typo in a binary
       new  c822118   temporary allow development releases in debian/watch
      adds  8f55baf   New upstream version 1.55~04
       new  8cddd3e   Update upstream source from tag 'upstream/1.55_04'
       new  5760089   Revert "override a lintian warning about a typo in a binary"
       new  388f440   releasing package libdbd-sqlite3-perl version 1.55~04-1

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |     2 +
 Changes                                            |    24 +
 MANIFEST                                           |     2 +-
 META.json                                          |     4 +-
 META.yml                                           |     2 +-
 README                                             |     2 +-
 constants.inc                                      |    28 +
 dbdimp.c                                           |     9 +-
 dbdimp_virtual_table.inc                           |    12 +
 debian/changelog                                   |    14 +-
 debian/control                                     |     2 +-
 debian/watch                                       |     5 +-
 lib/DBD/SQLite.pm                                  |    15 +-
 lib/DBD/SQLite/Constants.pm                        |    15 +
 lib/DBD/SQLite/VirtualTable.pm                     |     2 +-
 lib/DBD/SQLite/VirtualTable/PerlData.pm            |    18 +-
 sqlite3.c                                          | 31736 ++++++++++++-------
 sqlite3.h                                          |  1541 +-
 sqlite3ext.h                                       |    52 +-
 t/01_compile.t                                     |     4 +-
 t/02_logon.t                                       |     3 +-
 t/03_create_table.t                                |     3 +-
 t/04_insert.t                                      |     3 +-
 t/05_select.t                                      |     3 +-
 t/06_tran.t                                        |     3 +-
 t/07_error.t                                       |     3 +-
 t/08_busy.t                                        |     3 +-
 t/09_create_function.t                             |     3 +-
 t/10_create_aggregate.t                            |     3 +-
 t/12_unicode.t                                     |     3 +-
 t/13_create_collation.t                            |     3 +-
 t/14_progress_handler.t                            |     3 +-
 t/15_ak_dbd.t                                      |     3 +-
 t/16_column_info.t                                 |     3 +-
 t/17_createdrop.t                                  |     3 +-
 t/18_insertfetch.t                                 |     3 +-
 t/19_bindparam.t                                   |     3 +-
 t/20_blobs.t                                       |    32 +-
 t/21_blobtext.t                                    |     3 +-
 t/22_listfields.t                                  |     3 +-
 t/23_nulls.t                                       |     3 +-
 t/24_numrows.t                                     |     3 +-
 t/25_chopblanks.t                                  |     3 +-
 t/26_commit.t                                      |     3 +-
 t/27_metadata.t                                    |     3 +-
 t/28_schemachange.t                                |     3 +-
 t/30_auto_rollback.t                               |     3 +-
 t/31_bind_weird_number_param.t                     |     3 +-
 t/32_inactive_error.t                              |     3 +-
 t/33_non_latin_path.t                              |     3 +-
 t/34_online_backup.t                               |     3 +-
 t/35_table_info.t                                  |     3 +-
 t/36_hooks.t                                       |     3 +-
 t/37_regexp.t                                      |     6 +-
 t/38_empty_statement.t                             |     3 +-
 t/39_foreign_keys.t                                |     3 +-
 t/40_multiple_statements.t                         |     3 +-
 t/41_placeholders.t                                |     3 +-
 t/42_primary_key_info.t                            |     3 +-
 t/43_fts3.t                                        |     3 +-
 t/44_rtree.t                                       |     3 +-
 t/45_savepoints.t                                  |     3 +-
 t/46_mod_perl.t                                    |     3 +-
 t/47_execute.t                                     |     3 +-
 t/48_bind_param_is_sticky.t                        |     3 +-
 t/49_trace_and_profile.t                           |     3 +-
 t/50_foreign_key_info.t                            |     3 +-
 t/51_table_column_metadata.t                       |     3 +-
 t/52_db_filename.t                                 |     3 +-
 t/53_status.t                                      |     3 +-
 t/54_literal_txn.t                                 |     3 +-
 t/55_statistics_info.t                             |   114 +-
 t/56_open_flags.t                                  |     3 +-
 t/57_uri_filename.t                                |     3 +-
 t/58_see_if_its_a_number_and_explicit_binding.t    |     3 +-
 t/59_extended_result_codes.t                       |     3 +-
 t/60_readonly.t                                    |     3 +-
 t/61_strlike.t                                     |     3 +-
 t/62_regexp_multibyte_char_class.t                 |     3 +-
 t/cookbook_variance.t                              |     3 +-
 t/lib/{Test.pm => SQLiteTest.pm}                   |     3 +-
 t/rt_106151_outermost_savepoint.t                  |     3 +-
 t/rt_106950_extra_warnings_with_savepoints.t       |     3 +-
 t/rt_115465_column_info_with_spaces.t              |     3 +-
 t/rt_15186_prepcached.t                            |     3 +-
 t/rt_21406_auto_finish.t                           |     3 +-
 t/rt_25371_asymmetric_unicode.t                    |     3 +-
 t/rt_25460_numeric_aggregate.t                     |     3 +-
 t/rt_25924_user_defined_func_unicode.t             |     3 +-
 t/rt_26775_distinct.t                              |     3 +-
 t/rt_27553_prepared_cache_and_analyze.t            |     3 +-
 t/rt_29058_group_by.t                              |     3 +-
 t/rt_29629_sqlite_where_length.t                   |     3 +-
 t/rt_31324_full_names.t                            |     3 +-
 t/rt_32889_prepare_cached_reexecute.t              |     3 +-
 t/rt_36836_duplicate_key.t                         |     3 +-
 t/rt_36838_unique_and_bus_error.t                  |     3 +-
 t/rt_40594_nullable.t                              |     3 +-
 t/rt_48393_debug_panic_with_commit.t               |     3 +-
 t/rt_50503_fts3.t                                  |     3 +-
 t/rt_52573_manual_exclusive_lock.t                 |     3 +-
 t/rt_53235_icu_compatibility.t                     |     3 +-
 t/rt_62370_diconnected_handles_operation.t         |     3 +-
 t/rt_64177_ping_wipes_out_the_errstr.t             |     3 +-
 t/rt_67581_bind_params_mismatch.t                  |     3 +-
 t/rt_71311_bind_col_and_unicode.t                  |     3 +-
 t/rt_73159_fts_tokenizer_segfault.t                |     3 +-
 t/rt_73787_exponential_buffer_overflow.t           |     3 +-
 t/rt_76395_int_overflow.t                          |     3 +-
 t/rt_77724_primary_key_with_a_whitespace.t         |     3 +-
 t/rt_78833_utf8_flag_for_column_names.t            |     3 +-
 t/rt_81536_multi_column_primary_key_info.t         |     3 +-
 t/rt_88228_sqlite_3_8_0_crash.t                    |     3 +-
 t/rt_96050_db_filename_for_a_closed_database.t     |     3 +-
 t/rt_96877_unicode_statements.t                    |     3 +-
 t/rt_96878_fts_contentless_table.t                 |     3 +-
 ...97598_crash_on_disconnect_with_virtual_tables.t |     3 +-
 t/virtual_table/00_base.t                          |     3 +-
 t/virtual_table/01_destroy.t                       |     3 +-
 t/virtual_table/02_find_function.t                 |     3 +-
 t/virtual_table/10_filecontent.t                   |     3 +-
 t/virtual_table/11_filecontent_fulltext.t          |     5 +-
 t/virtual_table/20_perldata.t                      |     3 +-
 t/virtual_table/21_perldata_charinfo.t             |     3 +-
 t/virtual_table/rt_99748.t                         |     9 +-
 xt/cpp_comments.t                                  |     3 +-
 126 files changed, 21649 insertions(+), 12309 deletions(-)
 rename t/lib/{Test.pm => SQLiteTest.pm} (99%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdbd-sqlite3-perl.git



More information about the Pkg-perl-cvs-commits mailing list