From b58503b83dd77dfc7d6789c543623f665e45d480 Mon Sep 17 00:00:00 2001 From: Bill Date: Tue, 15 Nov 2022 13:14:21 +0800 Subject: [PATCH] fixed regression --- reconstruct/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reconstruct/ast.py b/reconstruct/ast.py index 953981b..91e100f 100644 --- a/reconstruct/ast.py +++ b/reconstruct/ast.py @@ -426,7 +426,7 @@ class select_distinct(projection): super().consume(node) if self.has_postproc: self.context.emitc( - f'{self.out_table.table_name}->distinct();' + f'{self.out_table.contextname_cpp}->distinct();' ) self.finalize()