On Sep 23, 2011, at 9:17 PM, Richard Hipp wrote:

> paper above completely ignores this issue.  It is as if the authors had
> never heard of short-circuit evaluation.  Or, perhaps they are familiar with
> the problem but could not reach agreement on its solution so simply didn't
> bring it up.

Another way to look at a short-circuit evaluation is that it does not represent 
a Boolean expression at all. It represents a control statement.

A && B => { if A then return B else return true }

A || B => { if A then return true else return B }

e

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to