Change field name to something more appropriate.

This commit is contained in:
David Overcash 2016-06-17 09:32:07 -07:00
parent 04ddaeaa4a
commit 4ab0a916ba
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ assign(QueryCompiler.prototype, {
timeout: this.timeout,
cancelOnTimeout: this.cancelOnTimeout,
bindings: this.formatter.bindings,
uuid: uuid.v4()
__knexQueryId: uuid.v4()
};
if (isString(val)) {
val = {sql: val};

View File

@ -97,7 +97,7 @@ assign(Raw.prototype, {
}
this._cached.bindings = this.client.prepBindings(this._cached.bindings, tz);
}
this._cached.uuid = uuid.v4();
this._cached.__knexQueryId = uuid.v4();
return this._cached
}