Flask - Performance Optimization
Given the code below, what will be the output when accessing
user.posts if lazy='select' is used?user = session.query(User).first() print(user.posts)
