Enhanced the auto-Completion
Summary
Add missing identifiers to the list of suggested names in the auto-completion provided in the SQL query console of the Polypheny-UI.
Fixes #43
ToDo
- [x] Add Constraints
- [x] Add Indexes
- [x] Add Adapters
- [x] Add QueryInterfaces
Hi, @hennlo I need some help,plz Should I implement adapters and QueryInterface in a separate endpoint ?,
Hi @alyaa999 What do you mean by 'in a sperate endpoint'?
Reference in new
@hennlo I mean that the getSchemaTree method retrieves objects situated under schemas, whereas adapters and the query interface are not part of the schema. Therefore, we should create a new method to specifically return adapters and the query interface, and then add it to the suggestion list in the editor component (Polypheny-UI) or return adapters and query interfaces with getSchemaTree method ??
@alyaa999 Ah okay I get the question now, thanks for clarifying. Yes indeed a separate method(s) would be desirable since adapters and inetrfaces are not part of any schema 👍
I have a question related to the "getSchemaTree" method. This method accepts a parameter called "depth," and the user interface (UI) sends a request with a depth of 3, indicating schemas, tables, and columns. My question is whether I should adjust this depth to 5 or 4 to express constrains and indexes