Elvis Pranskevichus

Results 49 issues of Elvis Pranskevichus

Currently, DHCP, if enabled, uses the entire range of network addresses, sans network, gateway and broadcast. This makes life difficult for scenarios where some static address allocation is needed and...

Observe the differences in highlighting of the keyword argument names below: ![image](https://user-images.githubusercontent.com/347119/75052116-0e048f80-549d-11ea-8de1-2124d63ade02.png)

EdgeQL currently lacks syntax to convert an array into a variadic number of function arguments, which makes the latter unusable in cases where the argument count is not known at...

Access policies are applied _before_ the constraint is checked anyway and performing rewrites confuses constraint IR analysis. This was partially fixed in #3892, but not all the way. Fixes: #4245

People are often (rightfully) confused about what exactly to put in the cast expression when creating a migration that alters a link/property type. Same with `fill_expr` for when making a...

documentation

#4150 prohibited expressions with cardinality `MANY` from being used in the `using` clause of access policies due to perceived ambiguity. This issue is a reminder to investigate the issue more...

Currently, self-referencing inserts are prohibited, i.e. the following will throw: ``` insert User { modified_by := User } ``` This is a useful pattern sometimes, and a more elaborate example...

Currently, the shortest way to convert an object id into an object value is to do `SELECT MyObject FILTER .id = some-uuid`. Since converting ids to objects is a fairly...

Given this schema: ``` create type default::Bar { create property name -> std::str { create constraint std::exclusive; }; }; create type default::Foo { create link bar -> default::Bar { create...

When a computed is a simple alias over another property or link (even a backlink), we should allow mutating it. This will remove one of the inconveniences of modeling one-to-many...

enhancement
2.0