summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-09-10 12:58:11 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-09-10 12:58:11 -0400
commitcd8b9dcd37e29b73a3c4b25adc16f1b45371fb7a (patch)
treef207c13c8a4cc11dceece70adec5e4c4ffe40bc8 /CHANGES
parent15170b74d2f556499ae3f8d35c2d9bf5120b9ebd (diff)
downloadsqlalchemy-cd8b9dcd37e29b73a3c4b25adc16f1b45371fb7a.tar.gz
- [feature] The cast() and extract() constructs
will now be produced via the func.* accessor as well, as users naturally try to access these names from func.* they might as well do what's expected, even though the returned object is not a FunctionElement. [ticket:2562]
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 631ecc62e..c68278436 100644
--- a/CHANGES
+++ b/CHANGES
@@ -456,6 +456,14 @@ underneath "0.7.xx".
name different from the identified name
in func.*.
+ - [feature] The cast() and extract() constructs
+ will now be produced via the func.* accessor
+ as well, as users naturally try to access these
+ names from func.* they might as well do
+ what's expected, even though the returned
+ object is not a FunctionElement.
+ [ticket:2562]
+
- [changed] Most classes in expression.sql
are no longer preceded with an underscore,
i.e. Label, SelectBase, Generative, CompareMixin.