Skip to content

Commit

Permalink
Matched the requirements for special characters in table names just l…
Browse files Browse the repository at this point in the history
…ike in columns
  • Loading branch information
anton-bobkov committed Dec 10, 2024
1 parent 35cadbc commit 27d41fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ Every table in {{ ydb-short-name }} has a name. In YQL statements, table names a

Table names in {{ ydb-short-name }} must meet the following requirements:

- Table names can include uppercase and lowercase latin characters, and digits.
- Table names can include the following characters:
- uppercase latin characters
- lowercase latin characters
- digits
- special characters: `-` and `_`.
- Table name length must not exceed 255 characters.
- Table names must not contain dots only.
- Tables cannot be created in folders, which names start with a dot.
Expand All @@ -19,4 +23,3 @@ Column names in {{ ydb-short-name }} must meet the following requirements:
- digits
- special characters: `-` and `_`.
- Column names must not start with the system prefix `__ydb_`.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

Имена таблиц в {{ ydb-short-name }} должны соответствовать следующим требованиям:

- Имя таблицы может состоять из прописных (заглавных) и строчных латинских букв, и цифр.
- Имя таблицы может состоять из следующих символов:
- прописные латинские буквы;
- строчные латинские буквы;
- цифры;
- специальные символы: `-` и `_`.
- Длина имени таблицы не должна превышать 255 символов.
- Имя таблицы не должно состоять только из точек.
- Таблицы не должны создаваться в папках, имена которых начинаются с точки.
Expand All @@ -20,4 +24,3 @@
- специальные символы: `-` и `_`.
- Длина имени колонки не должна превышать 255 символов.
- Имя колонки не должно начинаться с системного префикса `__ydb_`.

0 comments on commit 27d41fe

Please sign in to comment.