[sqlite] Behaviour changed from 3.7 to 3.8

2015-04-01 Thread Marcel Keller
Hi, Consider the following database: sqlite> .schema CREATE TABLE counter (i integer); CREATE TABLE expenses (date float, month text, amount numeric); sqlite> select * from counter; 0 1 2 sqlite> select * from expenses; 2457113.5163101||100 In the latest binary from the website, I get the follow

[sqlite] Behaviour changed from 3.7 to 3.8

2015-04-01 Thread Richard Hipp
On 4/1/15, Marcel Keller wrote: > Hi, > > Consider the following database: > > sqlite> .schema > CREATE TABLE counter (i integer); > CREATE TABLE expenses (date float, month text, amount numeric); > sqlite> select * from counter; > 0 > 1 > 2 > sqlite> select * from expenses; > 2457113.5163101||100