Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Naming conventions (db 64, coll 256)
Browse files Browse the repository at this point in the history
  • Loading branch information
Simran-B committed Dec 19, 2019
1 parent 3d5164c commit d3c4e3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions 3.6/aql/fundamentals-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ Names
In general, names are used to identify objects (collections, attributes,
variables, and functions) in AQL queries.

<!-- TODO: variable names can apparently be longer than 256 bytes -->
The maximum supported length of any name is 256 bytes. Names in AQL are always
case-sensitive.
Names in AQL are always case-sensitive.
The maximum supported length for collection/View names is 256 bytes.
Variable names can be longer, but are discouraged.

Keywords must not be used as names. If a reserved keyword should be used as a
name, the name must be enclosed in backticks or forward ticks. Enclosing a name in
Expand Down
2 changes: 1 addition & 1 deletion 3.6/data-modeling-naming-conventions-database-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ names conform to the following constraints:
* Database names must always start with a letter. Database names starting
with an underscore are considered to be system databases, and users should
not create or delete those
* The maximum allowed length of a database name is 255 bytes <!-- TODO: why?! -->
* The maximum allowed length of a database name is 64 bytes
* Database names are case-sensitive

0 comments on commit d3c4e3b

Please sign in to comment.