diff options
author | Terentev <alexey.terentev@lamoda.ru> | 2013-07-11 14:41:36 +0400 |
---|---|---|
committer | Terentev <alexey.terentev@lamoda.ru> | 2013-07-11 14:41:36 +0400 |
commit | a575381977e1b02d3eaf7c7b62e6688583ef71d8 (patch) | |
tree | 98f0e3e0319e474aa5c1c96ca6e4db7f3a867bb4 | |
parent | cd8a40284d0fb053f652f4a3d2745c22674603f8 (diff) | |
download | sqlalchemy-pr/14.tar.gz |
getitem operator from operators for postgres ARRAYpr/14
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 93dc3fc4d..ddfba55bb 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -115,6 +115,7 @@ OPERATORS = { operators.asc_op: ' ASC', operators.nullsfirst_op: ' NULLS FIRST', operators.nullslast_op: ' NULLS LAST', + operators.getitem: '' } FUNCTIONS = { |