Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
wangjiahao 2021-11-03 14:21:34 +08:00
commit a7a4489223
2 changed files with 4 additions and 4 deletions

View File

@ -183,7 +183,7 @@ public class RedshiftQueryProvider extends QueryProvider {
@Override
public String createQuerySQLWithPage(String sql, List<DatasetTableField> fields, Integer page, Integer pageSize, Integer realSize, boolean isGroup) {
return createQuerySQL(sql, fields, isGroup, null) + " LIMIT " + realSize + " offset " + (page - 1) * pageSize;
return createQuerySQLAsTmp(sql, fields, isGroup) + " LIMIT " + realSize + " offset " + (page - 1) * pageSize;
}
@Override

View File

@ -126,9 +126,9 @@ export default {
})
}
const v = `${this.sVal} ${this.mVal} ${this.hVal} ${this.dVal} ${this.monthVal} ${this.weekVal} ${this.yearVal}`
if (v !== this.value) {
this.$emit('input', v)
}
// if (v !== this.value) {
this.$emit('input', v)
// }
return v
}
},