We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQL-99 defines a collection type as,
<collection type> ::= <data type> <array specification> <array specification> ::= <collection type constructor> <data type> <left bracket or trigraph> <unsigned integer> <right bracket or trigraph> <collection type constructor> ::= ARRAY # aka INT ARRAY[10]
PartiQL defines the extensions for bags and familiar HIVE syntax
-- 1 T ARRAY[N] <=> ARRAY<T>[N] -- 2 ARRAY[N] <=> DYANMIC ARRAY[N] <=> ARRAY<DYNAMIC>[N] -- 3 ARRAY <=> DYNAMIC ARRAY <=> ARRAY<DYNAMIC> <=> LIST -- 1 T BAG[N] <=> BAG<T>[N] -- 2 BAG[N] <=> DYANMIC BAG[N] <=> BAG<DYNAMIC>[N] -- 3 BAG <=> DYNAMIC BAG <=> BAG<DYNAMIC>
But partiql-lang-kotlin does not support defining a length-constrained collection per SQL.
You can define INT ARRAY[N] where N is <unsigned integer>.
INT ARRAY[N]
<unsigned integer>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
SQL-99 defines a collection type as,
PartiQL defines the extensions for bags and familiar HIVE syntax
But partiql-lang-kotlin does not support defining a length-constrained collection per SQL.
Expected Behavior
You can define
INT ARRAY[N]
where N is<unsigned integer>
.Additional Context
The text was updated successfully, but these errors were encountered: