Skip to content

Commit

Permalink
Stop validating pre/post ops. Start validating incremental queries. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
BenBirt authored Nov 5, 2020
1 parent 53fc50e commit 95b5176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions core/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -676,12 +676,7 @@ export class Table {
);

validateQueryString(this.session, this.proto.query, this.proto.fileName);
this.proto.preOps.forEach(preOp =>
validateQueryString(this.session, preOp, this.proto.fileName)
);
this.proto.postOps.forEach(postOp =>
validateQueryString(this.session, postOp, this.proto.fileName)
);
validateQueryString(this.session, this.proto.incrementalQuery, this.proto.fileName);

return this.proto;
}
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# NOTE: If you change the format of this line, you must change the bash command
# in /scripts/publish to extract the version string correctly.
DF_VERSION = "1.15.4"
DF_VERSION = "1.15.5"

0 comments on commit 95b5176

Please sign in to comment.