Files
email-tracker/external/duckdb/tools/shell/tests/test_explain.py
2025-10-24 19:21:19 -05:00

16 lines
278 B
Python

# fmt: off
import pytest
import subprocess
import sys
from typing import List
from conftest import ShellTest
import os
def test_invalid_explain(shell):
test = (
ShellTest(shell)
.statement("EXPLAIN SELECT 'any_string' IN ?;")
)
result = test.run()