Skip to content

Commit 8c1ff82

Browse files
Merge branch 'main' into dependabot/cargo/tracing-opentelemetry-0.21.0
2 parents 06098bc + ff623ee commit 8c1ff82

File tree

124 files changed

+4798
-1920
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+4798
-1920
lines changed

Cargo.lock

Lines changed: 123 additions & 124 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,30 @@ RisingWave ingests data from sources like Apache Kafka, Apache Pulsar, Amazon Ki
1818

1919
RisingWave 1.0 is a battle-tested version that has undergone rigorous stress tests and performance evaluations. It has proven its reliability and efficiency through successful deployments in numerous production environments across dozens of companies.
2020

21-
Learn more at [Introduction to RisingWave](https://www.risingwave.dev/docs/current/intro/).
21+
Learn more at [Introduction to RisingWave](https://docs.risingwave.com/docs/current/intro/).
2222

2323
![RisingWave](https://github.com/risingwavelabs/risingwave-docs/blob/0f7e1302b22493ba3c1c48e78810750ce9a5ff42/docs/images/archi_simple.png)
2424

2525

2626
## RisingWave Cloud
2727

28-
RisingWave Cloud is a fully-managed and scalable stream processing platform powered by the open-source RisingWave project. Try it out for free at: [risingwave.com/cloud](https://risingwave.com/cloud).
28+
RisingWave Cloud is a fully-managed and scalable stream processing platform powered by the open-source RisingWave project. Try it out for free at: [cloud.risingwave.com](https://cloud.risingwave.com).
2929

3030
## Notes on telemetry
3131

3232
RisingWave collects anonymous usage statistics to better understand how the community is using RisingWave. The sole intention of this exercise is to help improve the product. These statistics are related to system resource usage, OS versions and system uptime. RisingWave doesn't have access to any user data or metadata running on RisingWave clusters including source and sink connection parameters, sources, sinks, materialized views, and tables. Users have the option to opt out of this collection using a system parameter. Please refer to the RisingWave user documentation for more details.
3333

3434
## Get started
3535

36-
- To learn about how to install and run RisingWave, see [Get started](https://www.risingwave.dev/docs/current/get-started/).
37-
- To learn about how to ingest data and the supported data sources, see [Sources](https://www.risingwave.dev/docs/current/data-ingestion/).
38-
- To learn about how to transform data using the PostgreSQL-compatible SQL of RisingWave, see [SQL reference](https://www.risingwave.dev/docs/current/sql-references/).
39-
- To learn about how to deliver data and the supported data sinks, see [Sinks](https://www.risingwave.dev/docs/current/data-delivery/).
40-
- To learn about new features and changes in the current and previous versions, see [Release notes](https://www.risingwave.dev/docs/current/release-notes/).
36+
- To learn about how to install and run RisingWave, see [Get started](https://docs.risingwave.com/docs/current/get-started/).
37+
- To learn about how to ingest data and the supported data sources, see [Sources](https://docs.risingwave.com/docs/current/data-ingestion/).
38+
- To learn about how to transform data using the PostgreSQL-compatible SQL of RisingWave, see [SQL reference](https://docs.risingwave.com/docs/current/sql-references/).
39+
- To learn about how to deliver data and the supported data sinks, see [Sinks](https://docs.risingwave.com/docs/current/data-delivery/).
40+
- To learn about new features and changes in the current and previous versions, see [Release notes](https://docs.risingwave.com/release-notes/).
4141

4242
## Documentation
4343

44-
To learn about how to use RisingWave, refer to [RisingWave User Documentation](https://www.risingwave.dev/). To learn about the development process, see the [developer guide](docs/developer-guide.md). To understand the design and implementation of RisingWave, refer to the design docs listed in [readme.md](docs/README.md).
44+
To learn about how to use RisingWave, refer to [RisingWave User Documentation](https://docs.risingwave.com/). To learn about the development process, see the [developer guide](docs/developer-guide.md). To understand the design and implementation of RisingWave, refer to the design docs listed in [readme.md](docs/README.md).
4545

4646
## Community
4747

docker/dashboards/risingwave-dev-dashboard.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

e2e_test/batch/basic/func.slt.part

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,4 +544,61 @@ XXX
544544
query T
545545
select regexp_replace('💩💩💩💩💩foo🤔️bar亲爱的😭baz这不是爱情❤️‍🔥', 'baz(...)', '这是🥵', 'ic');
546546
----
547-
💩💩💩💩💩foo🤔️bar亲爱的😭这是🥵爱情❤️‍🔥
547+
💩💩💩💩💩foo🤔️bar亲爱的😭这是🥵爱情❤️‍🔥
548+
549+
query T
550+
select regexp_count('ABCABCAXYaxy', 'A.');
551+
----
552+
3
553+
554+
query T
555+
select regexp_count('ABCABCAX🤔️axy', 'A.');
556+
----
557+
3
558+
559+
query T
560+
select regexp_count('ABCABCAXYaxy', 'A.', 1, 'i');
561+
----
562+
4
563+
564+
query T
565+
select regexp_count('ABCABCAbXYaxy', 'AB');
566+
----
567+
2
568+
569+
query T
570+
select regexp_count('ABCABCAbXYaxy', 'AB', 1, 'i');
571+
----
572+
3
573+
574+
query T
575+
select regexp_count('ABCABCAXYaxy', '[a-c]', 1, 'i');
576+
----
577+
8
578+
579+
query T
580+
select regexp_count('123ABC#456', '\d{3}');
581+
----
582+
2
583+
584+
query T
585+
select regexp_count('foobarbaz', 'b..', 3);
586+
----
587+
2
588+
589+
query error Expected start to be a Unsigned Int32
590+
select regexp_count('foobarbaz', 'b..', 'g');
591+
592+
query error Expected start to be a Unsigned Int32
593+
select regexp_count('foobarbaz', 'b..', 'i');
594+
595+
query error invalid regular expression option: "a"
596+
select regexp_count('foobarbaz', 'b..', 3, 'a');
597+
598+
query error `regexp_count` does not support global flag option
599+
select regexp_count('foobar', 'b..', 1, 'g');
600+
601+
query T
602+
select regexp_count('💩💩💩💩💩foo🤔️bar亲爱的😭baz这不是爱情❤️‍🔥', '亲爱的😭', 1, 'i');
603+
----
604+
1

0 commit comments

Comments
 (0)