Skip to content

Commit d388230

Browse files
committed
Fix links
Signed-off-by: Joshua Li <[email protected]>
1 parent dae3291 commit d388230

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The following projects have been merged into this repository as separate folders
3434

3535
Besides basic filtering and aggregation, OpenSearch SQL also supports complex queries, such as querying semi-structured data, JOINs, set operations, sub-queries etc. Beyond the standard functions, OpenSearch functions are provided for better analytics and visualization. Please check our [documentation](#documentation) for more details.
3636

37-
Recently we have been actively improving our query engine primarily for better correctness and extensibility. Behind the scene, the new enhanced engine has already supported both SQL and Piped Processing Language. Please find more details in [SQL Engine V2 - Release Notes](/docs/dev/NewSQLEngine.md).
37+
Recently we have been actively improving our query engine primarily for better correctness and extensibility. Behind the scene, the new enhanced engine has already supported both SQL and Piped Processing Language. Please find more details in [SQL Engine V2 - Release Notes](./docs/dev/NewSQLEngine.md).
3838

3939

4040
## Documentation

docs/dev/NewSQLEngine.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ The current SQL query engine provides users the basic query capability for using
1212
With the architecture and extensibility improved significantly, the following SQL features are able to be introduced in the new query engine:
1313

1414
* **Language Structure**
15-
* [Identifiers](/docs/user/general/identifiers.rst): added support for identifier names with special characters
16-
* [Data types](/docs/user/general/datatypes.rst): added support for date and interval types
17-
* [Expressions](/docs/user/dql/expressions.rst): complex nested expression support
18-
* [SQL functions](/docs/user/dql/functions.rst): more date function support, `ADDDATE`, `DATE_ADD`, `DATE_SUB`, `DAY`, `DAYNAME`, `DAYOFMONTH`, `DAYOFWEEK`, `DAYOFYEAR`, `FROM_DAYS`, `HOUR`, `MICROSECOND`, `MINUTE`, `QUARTER`, `SECOND`, `SUBDATE`, `TIME`, `TIME_TO_SEC`, `TO_DAYS`, `WEEK`
19-
* [Comments](/docs/user/general/comments.rst): SQL comment support
15+
* [Identifiers](./docs/user/general/identifiers.rst): added support for identifier names with special characters
16+
* [Data types](./docs/user/general/datatypes.rst): added support for date and interval types
17+
* [Expressions](./docs/user/dql/expressions.rst): complex nested expression support
18+
* [SQL functions](./docs/user/dql/functions.rst): more date function support, `ADDDATE`, `DATE_ADD`, `DATE_SUB`, `DAY`, `DAYNAME`, `DAYOFMONTH`, `DAYOFWEEK`, `DAYOFYEAR`, `FROM_DAYS`, `HOUR`, `MICROSECOND`, `MINUTE`, `QUARTER`, `SECOND`, `SUBDATE`, `TIME`, `TIME_TO_SEC`, `TO_DAYS`, `WEEK`
19+
* [Comments](./docs/user/general/comments.rst): SQL comment support
2020
* **Basic queries**
21-
* [HAVING without GROUP BY clause](/docs/user/dql/aggregations.rst#having-without-group-by)
22-
* [Aggregate over arbitrary expression](/docs/user/dql/aggregations.rst#expression)
23-
* [Ordering by NULLS FIRST/LAST](/docs/user/dql/basics.rst#example-2-specifying-order-for-null)
24-
* [Ordering by aggregate function](/docs/user/dql/basics.rst#example-3-ordering-by-aggregate-functions)
21+
* [HAVING without GROUP BY clause](./docs/user/dql/aggregations.rst#having-without-group-by)
22+
* [Aggregate over arbitrary expression](./docs/user/dql/aggregations.rst#expression)
23+
* [Ordering by NULLS FIRST/LAST](./docs/user/dql/basics.rst#example-2-specifying-order-for-null)
24+
* [Ordering by aggregate function](./docs/user/dql/basics.rst#example-3-ordering-by-aggregate-functions)
2525
* **Complex queries**
26-
* [Subqueries in FROM clause](/docs/user/dql/complex.rst#example-2-subquery-in-from-clause): support arbitrary nesting level and aggregation
26+
* [Subqueries in FROM clause](./docs/user/dql/complex.rst#example-2-subquery-in-from-clause): support arbitrary nesting level and aggregation
2727
* **Advanced Features**
28-
* [Window functions](/docs/user/dql/window.rst): ranking and aggregate window functions
29-
* [Selective aggregation](/docs/user/dql/aggregations.rst#filter-clause): by standard `FILTER` function
28+
* [Window functions](./docs/user/dql/window.rst): ranking and aggregate window functions
29+
* [Selective aggregation](./docs/user/dql/aggregations.rst#filter-clause): by standard `FILTER` function
3030
* **Beyond SQL**
31-
* [Semi-structured data query](/docs/user/beyond/partiql.rst#example-2-selecting-deeper-levels): support querying OpenSearch object fields on arbitrary level
31+
* [Semi-structured data query](./docs/user/beyond/partiql.rst#example-2-selecting-deeper-levels): support querying OpenSearch object fields on arbitrary level
3232
* OpenSearch multi-field: handled automatically and users won't have the access, ex. `text` is converted to `text.keyword` if it’s a multi-field
3333

3434
As for correctness, besides full coverage of unit and integration test, we developed a new comparison test framework to ensure correctness by comparing with other databases. Please find more details in [Testing](./Testing.md).
@@ -57,7 +57,7 @@ For the following features unsupported in the new engine, the query will be forw
5757

5858
### 3.3 Limitations
5959

60-
You can find all the limitations in [Limitations](/docs/user/limitations/limitations.rst).
60+
You can find all the limitations in [Limitations](./docs/user/limitations/limitations.rst).
6161

6262

6363
---

sql-cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Run single query from command line with options
123123
124124
## Code of Conduct
125125
126-
This project has adopted an [Open Source Code of Conduct](/CODE_OF_CONDUCT.md).
126+
This project has adopted an [Open Source Code of Conduct](./CODE_OF_CONDUCT.md).
127127
128128
129129
@@ -133,7 +133,7 @@ If you discover a potential security issue in this project we ask that you notif
133133
134134
## Licensing
135135
136-
See the [LICENSE](/LICENSE.TXT) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
136+
See the [LICENSE](./LICENSE.TXT) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
137137
138138
139139

0 commit comments

Comments
 (0)