Lines Matching refs:tableName
45 `create virtual table ${this.tableName('window')} using window;`);
48 `create view ${this.tableName('small')} as ` +
57 await this.query(`create virtual table ${this.tableName('span')} using
58 span_join(${this.tableName('small')},
59 ${this.tableName('window')});`);
66 this.query(`update ${this.tableName('window')} set
71 await this.query(`drop view if exists ${this.tableName('small')}`);
72 await this.query(`drop view if exists ${this.tableName('big')}`);
73 await this.query(`drop view if exists ${this.tableName('summary')}`);
76 `create view ${this.tableName('small')} as ` +
85 `create view ${this.tableName('big')} as ` +
93 await this.query(`create view ${this.tableName('summary')} as select
99 from ${this.tableName('span')}
103 const query = `select * from ${this.tableName('summary')} UNION ` +
104 `select * from ${this.tableName('big')} order by ts`;