-
Notifications
You must be signed in to change notification settings - Fork 397
Open
Description
DuckDB's index generator currently hardcodes the index names:
| sb.append(Randomly.fromOptions("i0", "i1", "i2", "i3", "i4")); // cannot query this information |
This information can now be dynamically queried:
SELECT * FROM duckdb_indexes();
Thus, it would be helpful to maintain information about indexes in the schema classes similar to other database system implementations in SQLancer and query this information dynamically:
| sb.append(globalState.getSchema().getFreeIndexName()); |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels