Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 committed Mar 7, 2024
1 parent 006df4b commit 459c9d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sqlparser/test_runner/tests/test_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

use risingwave_sqlparser::ast::REDACT_SQL_OPTION;

// Traverses the 'testdata/' directory and runs all files.
#[test]
fn run_all_test_files() {
risingwave_sqlparser_test_runner::run_all_test_files();
REDACT_SQL_OPTION.sync_scope(false, || {
risingwave_sqlparser_test_runner::run_all_test_files();
});
}

0 comments on commit 459c9d6

Please sign in to comment.