Skip to content

Commit

Permalink
Remove leftover comment and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Oct 4, 2024
1 parent 001060e commit 744ffcd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ public List<ImplementationContext> anyPrepareQuery( QueryContext context, Statem
implementation = processor.prepareDdl( statement, (ExecutableStatement) parsed.getQueryNode().get(), parsed );
previousDdl = true;
} else {
// as long as we directly commit the transaction, we cannot reuse the same transaction
previousDdl = false;
if ( parsed.getLanguage().validatorSupplier() != null ) {
if ( transaction.isAnalyze() ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ public void testQ1() throws SQLException {
SUM(l_extendedprice) AS sum_base_price,
SUM(l_extendedprice * (1 - l_discount)) AS sum_disc_price,
SUM(l_extendedprice * (1 - l_discount) * (1 + l_tax)) AS sum_charge,
AVG(l_quantity) AS avg_Fqty,
AVG(l_quantity) AS avg_qty,
AVG(l_extendedprice) AS avg_price,
AVG(l_discount) AS avg_disc,
COUNT(*) AS count_order
Expand Down

0 comments on commit 744ffcd

Please sign in to comment.