I am trying to create a simple btree index in postgreSQL mode with the USING BTREE syntax. The statement is failing. This will recreate the exception:
CREATE TABLE table_name (my_column INTEGER); CREATE INDEX table_idx_00 ON table_name USING BTREE (my_column); Is this syntax not supported? -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
