Explorar el Código

Refs #33319 -- Added note about commutation of QuerySet's | operator.

Ömer Faruk Abacı hace 3 años
padre
commit
f04b44bad4
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      docs/ref/models/querysets.txt

+ 3 - 0
docs/ref/models/querysets.txt

@@ -1898,6 +1898,9 @@ SQL equivalent:
 
     SELECT ... WHERE x=1 OR y=2
 
+``|`` is not a commutative operation, as different (though equivalent) queries
+may be generated.
+
 Methods that do not return ``QuerySet``\s
 -----------------------------------------