You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-8Lines changed: 20 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@
30
30
31
31
To get started on contributing to this project:
32
32
33
-
1. Download and install [Postgres.app](https://postgresapp.com/) and start it before opening up SeeQR
33
+
1. Download and install [Postgres.app](https://postgresapp.com/)(Mac)/[PGAdmin](https://www.pgadmin.org/download)(Windows) and start it before opening up SeeQR
34
34
2. Ensure that psql is available in the `$PATH`
35
35
3. Ensure that a 'postgres' role exists
36
36
4. Download the latest version of [SeeQR](https://github.com/open-source-labs/seeqr/releases/latest)
@@ -85,7 +85,7 @@ To get started on contributing to this project:
85
85
- Create/Edit Database <i>(currently in beta)</i>
86
86
87
87
- Users can create a new database from scratch by clicking the `Create New Database` button at the bottom of the sidebar
88
-
- Once a the database is given a name, htiting the `Initialize Database` button will create new database on the users PostgreSQL instance
88
+
- Once a the database is given a name, hitting the `Initialize Database` button will create new database on the users PostgreSQL instance
89
89
- Users can then input SQL commands and click `Update Database` to create and drop tables in the database
90
90
- Users have the option to alter any existing databases as well by selecting the database on the sidebar and running any SQL commands they would like.
91
91
- The `Export` button will write a .sql file on the user's desktop of the selected database
@@ -99,13 +99,24 @@ To get started on contributing to this project:
99
99
100
100
- In the 'QUERIES' view, the main panel is where the query input text field is located, utilizing CodeMirror. The paint button in the top right corner of the panel auto-formats the inputted query
101
101
- Users can select the database to use in the 'Database' dropdown above the main panel
102
-
- Users also have the option to execute a labelled or unlabelled query — simply provide a label in the 'Label' field above the main panel to identify the query in later comparisons against other queries
102
+
- Users also have the option to execute a labelled/grouped or unlabelled/ungrouped query — simply provide a label/group in the 'Label'/'Group' field above the main panel to identify the query in later comparisons against other queries
103
103
- Please note that only labelled queries will be saved in the current session for future references
104
104
- To execute the query, simply select the 'RUN QUERY' button at the bottom of the panel or press 'Ctrl-Enter' on the keyboard
- Click on the 'bar graph' icon at the top of the sidebar to get to the 'Compare Queries' view
132
144
- The comparison table is flexible to the user’s preferences as the user selects which queries to compare side by side
133
145
- Simply check or uncheck the box next to each saved query to add or remove the query from the graph
134
-
- Graph will be organized along the x-axis by label, and colored by schema
146
+
- Graph will be organized along the x-axis by group, and colored by schema
135
147
- Aside from the visualized performance comparison of the selected queries, a table will display information about each selected query, including its total run time and performance relative to other queries with the same label, with the most performant query highlighted
0 commit comments