Lines Matching refs:tableName
54 `create virtual table ${this.tableName('window')} using window;`);
56 await this.query(`create view ${this.tableName('freq')}
69 await this.query(`create view ${this.tableName('idle')}
82 await this.query(`create virtual table ${this.tableName('freq_idle')}
83 using span_join(${this.tableName('freq')} PARTITIONED cpu,
84 ${this.tableName('idle')} PARTITIONED cpu);`);
86 await this.query(`create virtual table ${this.tableName('span_activity')}
87 using span_join(${this.tableName('freq_idle')} PARTITIONED cpu,
88 ${this.tableName('window')});`);
91 await this.query(`create view ${this.tableName('activity')}
102 from ${this.tableName('span_activity')};
117 this.query(`update ${this.tableName('window')} set
125 from ${this.tableName('activity')}`;
144 from ${this.tableName('activity')})