10 lines
257 B
SQL
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.* |