Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

Check notice on line 1 in i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

sql-function-section-order

SQL function docs must contain sections in this order%3A Description%2C Syntax%2C Parameters%2C Return Value%2C Example. Missing%3A Example. Owner%3A @zclllyybb

Check warning on line 1 in i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

seo-title-duplicate

Rendered SEO title is duplicated across indexable pages%3A "IPV4_STRING_TO_NUM_OR_DEFAULT - Apache Doris". Add a version%2C locale%2C or page-specific qualifier. Owner%3A @zclllyybb

Check warning on line 1 in i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

seo-description-length

SEO description should be 80-160 characters; current length is 71. Owner%3A @zclllyybb
{
"title": "IPV4_STRING_TO_NUM_OR_DEFAULT",
"language": "zh-CN",
Expand Down Expand Up @@ -35,6 +35,13 @@
+----------------------------------------------+
```

```sql
create table ipv4_str(
str varchar(20)
) properties('replication_num' = '1');
insert into ipv4_str values('0.0.0.0'),('127.0.0.1'),('255.255.255.255'),('invalid');
```

```sql
select str, ipv4_string_to_num_or_default(str) from ipv4_str;
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

Check warning on line 1 in i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

sql-function-section-order

SQL function docs must contain sections in this order%3A Description%2C Syntax%2C Parameters%2C Return Value%2C Example. Missing%3A Example. Owner%3A @zclllyybb

Check warning on line 1 in i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

seo-title-duplicate

Rendered SEO title is duplicated across indexable pages%3A "IPV4_STRING_TO_NUM_OR_DEFAULT - Apache Doris". Add a version%2C locale%2C or page-specific qualifier. Owner%3A @zclllyybb

Check warning on line 1 in i18n/zh-CN/docusaurus-plugin-content-docs/version-3.x/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

seo-description-length

SEO description should be 80-160 characters; current length is 71. Owner%3A @zclllyybb
{
"title": "IPV4_STRING_TO_NUM_OR_DEFAULT",
"language": "zh-CN",
Expand Down Expand Up @@ -35,6 +35,13 @@
+----------------------------------------------+
```

```sql
create table ipv4_str(
str varchar(20)
) properties('replication_num' = '1');
insert into ipv4_str values('0.0.0.0'),('127.0.0.1'),('255.255.255.255'),('invalid');
```

```sql
select str, ipv4_string_to_num_or_default(str) from ipv4_str;
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

Check warning on line 1 in versioned_docs/version-2.1/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

seo-title-duplicate

Rendered SEO title is duplicated across indexable pages%3A "IPV4_STRING_TO_NUM_OR_DEFAULT - Apache Doris". Add a version%2C locale%2C or page-specific qualifier. Owner%3A @zclllyybb
{
"title": "IPV4_STRING_TO_NUM_OR_DEFAULT",
"language": "en",
Expand Down Expand Up @@ -29,13 +29,20 @@
select ipv4_string_to_num_or_default('192.168.0.1');
```
```text
+----------------------------------------------+

Check notice on line 32 in versioned_docs/version-2.1/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

sql-function-example-output

Every fenced sql query in Example must be followed by a fenced text block with expected output. Owner%3A @zclllyybb
| ipv4_string_to_num_or_default('192.168.0.1') |
+----------------------------------------------+
| 3232235521 |
+----------------------------------------------+
```

```sql
create table ipv4_str(
str varchar(20)
) properties('replication_num' = '1');
insert into ipv4_str values('0.0.0.0'),('127.0.0.1'),('255.255.255.255'),('invalid');
```

```sql
select str, ipv4_string_to_num_or_default(str) from ipv4_str;
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

Check notice on line 1 in versioned_docs/version-3.x/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

i18n-sync-locale-candidate

Japanese docs are report-only. Generate a candidate translation from the changed files and merge it only after human review. Owner%3A @zclllyybb

Check warning on line 1 in versioned_docs/version-3.x/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

seo-title-duplicate

Rendered SEO title is duplicated across indexable pages%3A "IPV4_STRING_TO_NUM_OR_DEFAULT - Apache Doris". Add a version%2C locale%2C or page-specific qualifier. Owner%3A @zclllyybb
{
"title": "IPV4_STRING_TO_NUM_OR_DEFAULT",
"language": "en",
Expand Down Expand Up @@ -29,13 +29,20 @@
select ipv4_string_to_num_or_default('192.168.0.1');
```
```text
+----------------------------------------------+

Check warning on line 32 in versioned_docs/version-3.x/sql-manual/sql-functions/scalar-functions/ip-functions/ipv4-string-to-num-or-default.md

View workflow job for this annotation

GitHub Actions / Build Check

sql-function-example-output

Every fenced sql query in Example must be followed by a fenced text block with expected output. Owner%3A @zclllyybb
| ipv4_string_to_num_or_default('192.168.0.1') |
+----------------------------------------------+
| 3232235521 |
+----------------------------------------------+
```

```sql
create table ipv4_str(
str varchar(20)
) properties('replication_num' = '1');
insert into ipv4_str values('0.0.0.0'),('127.0.0.1'),('255.255.255.255'),('invalid');
```

```sql
select str, ipv4_string_to_num_or_default(str) from ipv4_str;
```
Expand Down
Loading