Branch: refs/heads/master
  Home:   https://github.com/perl5-dbi/dbi
  Commit: 573e96824bb08bb411788e9e2354d0916fb1f589
      
https://github.com/perl5-dbi/dbi/commit/573e96824bb08bb411788e9e2354d0916fb1f589
  Author: Jens Rehsack <s...@netbsd.org>
  Date:   2013-05-30 (Thu, 30 May 2013)

  Changed paths:
    M lib/DBI/SQL/Nano.pm

  Log Message:
  -----------
      Always insert *ALL* fields on INSERT

    table foo (
  c_foo  integer,
  foo    char (2)
  );

    insert into foo (c_foo) values (1);

    resulted in passing *only* c_foo. When using CSV, that resulted in

    c_foo,foo
    1

    instead of

    c_foo,foo
    1,

    note the trailing ,


  Commit: f884d59fae9b9dd1b11ddd10fc5b0d7bafccc8a1
      
https://github.com/perl5-dbi/dbi/commit/f884d59fae9b9dd1b11ddd10fc5b0d7bafccc8a1
  Author: Jens Rehsack <s...@netbsd.org>
  Date:   2013-05-30 (Thu, 30 May 2013)

  Changed paths:
    M Changes

  Log Message:
  -----------
  Always insert *ALL* fields on INSERT in Nano


Compare: https://github.com/perl5-dbi/dbi/compare/3f4d5efaed8f...f884d59fae9b

Reply via email to