polypheny / Polypheny-DB

A self-adaptive Polystore that provides cost- and workload aware access to heterogeneous data.
https://polypheny.org
Apache License 2.0
123 stars 82 forks source link

Include missing identifiers in the list of suggestions of the SQL query console #43

Open vogti opened 5 years ago

vogti commented 5 years ago

Add constraint, index, adapter and query interface names to the list of suggested names in the auto-completion provided in the SQL query console of the Polypheny-UI.

There is an editor component int the UI (src/app/components/editor). It most probably makes sense to add a new method in the backend in Polypheny-DB (webui/src/main/java/org/polypheny/db/webui/Crud.java) which returns a list of all names to names / identifiers to be considered.

99Nistha commented 3 years ago

Hello @vogti I would like you to assign me this task, I know I am late in this game, but I have a good understanding of SQL as I had been working around the same in my internship with Walmart labs.

vogti commented 3 years ago

Hi @99Nistha, thank you for taking care of this. I have assigned the issue to you. Please follow this on how to set up Polypheny-DB in your favorite IDE and this guide on how to manually build Polypheny-UI. Feel free to ask here or open a thread in the discussion forum if you have any questions or experience any issues with setup.

nilshansen94 commented 3 years ago

To extend the REST interface between Polypheny-DB and Polypheny-UI yon can edit the Polypheny-DB/webui/src/main/java/org/polypheny/db/webui/HttpServer.java in the backend and the Polypheny-DB-UI/src/app/services/crud.service.ts in the UI.