基本上,ant sql任务执行以下操作:
然后创建SchemaB的表
def user_responses_on_topic(interest)
microposts = Micropost.tagged_with(interest, :on => :tags, :any => true)
count = 0
microposts.each do |micropost|
responses = micropost.responses.size
count = count + responses
end
count
end
问题是“create_tablesSchemaB.sql”不会为SchemaB创建表,但它只为SchemaA创建。所以基本上SchemaA有所有表格。 是否有一个脚本表示连接到SchemaA或“Connect SchemaA”?
答案 0 :(得分:0)
这是因为您的调用很可能不会更改第二个架构的上下文
可能的解决方案可能是......