执行提供here的查询后,我得到了以下结果
{
public abstract class BaseSteps : TechTalk.SpecFlow.Steps
{
public string GetTestEnvironment()
{
TestContext testContext = InitializeTestContext.Context;
string testEnvironment = testContext.Properties["Environment"].ToString();
return testEnvironment;
}
}
}
为什么我没有
// Create the <h4> element
var heading = document.createElement("h4");
// add the text
heading.textContent = "TEST";
// Create the text node <p>
var p = document.createTextNode("blablabla");
//get the element to which you want to append the h4 and p
var container = document.getElementById("myID");
// Append h4 and p
container.appendChild(heading);
container.appendChild(p);
答案 0 :(得分:2)
pg_relation_size
来电calclulate_relation_size
。
pg_table_size
来电calculate_table_size
。
calculate_table_size
来电calclulate_relation_size
和calculate_toast_table_size
。
因此,在致电pg_table_size
时TOAST
- 数据已添加。
答案 1 :(得分:2)
goal
指定表或索引的指定分支(pg_relation_size(relation regclass, fork text)
,'main'
,'fsm'
或'vm'
)使用的磁盘空间
'init'
指定表使用的磁盘空间,不包括索引(但包括TOAST,可用空间映射和可见性映射)
所以它必须是TOAST表。