Menemukan solusi
Buat kelas yang memperluas FunctionElement seperti ini
from sqlalchemy.sql.expression import FunctionElement
from sqlalchemy.ext.compiler import compiles
class json_array_length(FunctionElement):
name = 'json_array_len'
@compiles(json_array_length)
def compile(element, compiler, **kw):
return "json_array_length(%s)" % compiler.process(element.clauses)
dan gunakan seperti ini
session.query(Post.id, json_array_length(Post.items))
Catatan:ini akan berfungsi pada postgres karena fungsi 'json_array_length' didefinisikan di dalamnya. Jika Anda menginginkan ini untuk DB yang berbeda, fungsi itu perlu diubah. Lihat http://docs.sqlalchemy.org/en/rel_0_9/core/compiler.html#further-examples