Merge pull request #79 from dukefirehawk/feature/perf-2
Removed debugging messages
This commit is contained in:
commit
41167e01bd
3 changed files with 7 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 7.0.1
|
||||||
|
|
||||||
|
* Reduced debugging verbosity
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
* Require Dart >= 2.17
|
* Require Dart >= 2.17
|
||||||
|
|
|
@ -57,8 +57,8 @@ abstract class QueryBase<T> {
|
||||||
Future<List<T>> get(QueryExecutor executor) async {
|
Future<List<T>> get(QueryExecutor executor) async {
|
||||||
var sql = compile({});
|
var sql = compile({});
|
||||||
|
|
||||||
print('sql = $sql');
|
//print('sql = $sql');
|
||||||
print('substitutionValues = $substitutionValues');
|
//print('substitutionValues = $substitutionValues');
|
||||||
|
|
||||||
return executor.query(tableName, sql, substitutionValues).then((it) {
|
return executor.query(tableName, sql, substitutionValues).then((it) {
|
||||||
return deserializeList(it);
|
return deserializeList(it);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel3_orm
|
name: angel3_orm
|
||||||
version: 7.0.0
|
version: 7.0.1
|
||||||
description: Runtime support for Angel3 ORM. Includes base classes for queries.
|
description: Runtime support for Angel3 ORM. Includes base classes for queries.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm
|
||||||
|
|
Loading…
Reference in a new issue