Files
email-tracker/external/duckdb/test/sql/index/create_index_options.test
2025-10-24 19:21:19 -05:00

10 lines
257 B
SQL

# name: test/sql/index/create_index_options.test
# group: [index]
statement ok
CREATE TABlE t1 (foo INT)
statement error
CREATE INDEX i3 ON t1 USING random_index_method (foo) WITH (my_option = 2, is_cool);
----
<REGEX>:.*Binder Error.*Unknown index type.*