<div dir="ltr"><div>Hi Nyall,</div><div><br></div><div>thank you for confirming my worst nightmares :)</div><div><br></div><div>Unfortunately, since the data providers are certainly a foundation component of QGIS, these behavior inconsistencies lead to issues in client code (GUI/UX mainly but probably also in QgsVectorLayerUtils create features functions) and I believe we should try hard to find a solution.</div><div><br></div><div> Do you think it is a wast of time (because as you mentioned some providers can't tell the difference between a literal and an expression)?</div><div><br></div><div>I've done a PR that does not completely fix all the issues but at least adds some tests and fixes a few things: <a href="https://github.com/qgis/QGIS/pull/34012">https://github.com/qgis/QGIS/pull/34012</a></div><div><br></div><div><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jan 27, 2020 at 7:44 AM Nyall Dawson <<a href="mailto:nyall.dawson@gmail.com">nyall.dawson@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, 24 Jan 2020 at 19:28, Alessandro Pasotti <<a href="mailto:apasotti@gmail.com" target="_blank">apasotti@gmail.com</a>> wrote:<br>
><br>
<br>
> 1. From the docs it seems that the defaultValueClause() should ONLY return clauses (like sequences, functions, CURRENT_TIMESTAMP etc.) and should NOT return literal defaults.<br>
<br>
Correct. However -- not all providers are completely well behaved in<br>
this regard. Some of these are because of limitations on the provider<br>
itself, e.g. there is no way to different literal defaults from<br>
clause-type defaults on the associated backend. When we can't<br>
differentiate the two, we err on the side of returning a<br>
possible-literal value from defaultValueClause (and not the reverse<br>
and accidentally return a non-literal value from defaultValue() ).<br>
<br>
> 2. From the docs it seems that defaultValue() should return ONLY literal defaults and NOT functions, ::nextval and friends<br>
<br>
Correct (and should ALWAYS be the case)<br>
<br>
> 3. OGR provider does return the actual client-side calculated value when calling defaultValue() ONLY in case of literal defaults and CURRENT_TIMESTAMP, CURRENT_DATE and CURRENT_TIME, it returns the clause definition in all other cases, is this correct?<br>
<br>
Yes - it's deliberate, even thought it slightly violates the above<br>
answer to (2) in that for this provider we pre-calculate these<br>
quasi-literal values on the qgis side.<br>
<br>
> 4. postgres provider in case the property EvaluateDefaultValues is true does something more and send the clause to the server for evaluation, returning the calculated value, otherwise it returns the clause definition.<br>
<br>
That's correct also, and by design. As per the warnings in the<br>
defaultValue() docs, defaultValue calls are potentially dangerous to<br>
make and should only ever be done when creating features (and in that<br>
situation, only ever called once per field per feature). Otherwise<br>
when EvaluateDefaultValues is true we run the risk of evaluating<br>
sequences multiple times for a single feature, causing "gaps" in the<br>
sequence.<br>
<br>
> 5. What to return in case of no defaults? Depending on provider and field types, some implementations return a NULL (QVariant()), some others return a Python None.<br>
<br>
Slight correction: QVariant() != Python NULL. Rather QVariant() ==<br>
Python None, and QVariant( QVariant::Int ) == Python NULL. The c++ api<br>
doesn't usually differentiate between the two and QVariant() is more<br>
commonly used. (And I personally think in 4.0 we should completely<br>
remove the PyQGIS NULL/QVariant( QVariant::Int ) distinctions -- they<br>
add much complexity to code without compelling enough benefits).<br>
<br>
Short answer: return QVariant() when no default literal exists.<br>
<br>
> So, I'm confused about the expected behavior, if the documentation of defaultValue() and defaultValueClause() is correct then the provider implementations are (at least for some of them) wrong.<br>
<br>
Hope that clarifies!<br>
<br>
Nyall<br>
<br>
><br>
> I'd like to hear other developer's opinion before proceeding with a fix for the a.m. providers.<br>
><br>
> Thank you in advance!<br>
><br>
> --<br>
> Alessandro Pasotti<br>
> w3:   <a href="http://www.itopen.it" rel="noreferrer" target="_blank">www.itopen.it</a><br>
> _______________________________________________<br>
> QGIS-Developer mailing list<br>
> <a href="mailto:QGIS-Developer@lists.osgeo.org" target="_blank">QGIS-Developer@lists.osgeo.org</a><br>
> List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
> Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
</blockquote></div><br clear="all"><br>-- <br><div dir="ltr" class="gmail_signature">Alessandro Pasotti<br>w3:   <a href="http://www.itopen.it" target="_blank">www.itopen.it</a></div></div>