Skip to Content.
Sympa Menu

freetds - Re: [freetds] "Fix affected rows after insert with prepared query" side effect

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: Frediano Ziglio <freddy77 AT gmail.com>
  • To: FreeTDS Development Group <freetds AT lists.ibiblio.org>
  • Subject: Re: [freetds] "Fix affected rows after insert with prepared query" side effect
  • Date: Tue, 10 May 2016 23:34:34 +0100

2016-05-10 22:31 GMT+01:00 John Kendall <john AT capps.com>:
> It appears the patch for this ("fix ct-library rows count") has broken
> compute in ctlib:
>
>
> select col=1 into #tbl insert #tbl values (2) select * from #tbl compute
> sum(col)
> (1 row affected)
> (1 row affected)
> col
> -----------
> 1
> 2
> 2
>
> (3 rows affected)
>
> dblib (and ctlib RC1) does the expected:
>
> select col=1 into #tbl insert #tbl values (2) select * from #tbl compute
> sum(col)
> (1 row affected)
> (1 row affected)
> col
> -----------
> 1
> 2
> sum
> ===========
> 3
>
> (3 rows affected)
>
>
> Sorry to keep finding things!
>
> John
>
>

Can you put some more detailed examples? Which program did you use?

Frediano




Archive powered by MHonArc 2.6.24.

Top of Page