Skip to content
New issue

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

Allow directly nested arrays of arrays #7419

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft

Conversation

dnwpark
Copy link
Contributor

@dnwpark dnwpark commented May 31, 2024

Allows directly nested arrays.

The query select ([[1],[2]]++[[3]])[1:3][0]; returns [2].

The query select find(array_replace([[1],[2],[3]],[2],[4]),[1]); returns 0.

@dnwpark
Copy link
Contributor Author

dnwpark commented May 31, 2024

Needs lots of tests, especially for the schema.

While compiler can handle nested arrays, the protocol can't

_localdev:main> select [[1]];
edgedb error: ProtocolEncodingError: array shape is invalid

array_unpack does not work because I need more special handling for set returning functions.

array_fill doesn't work because return type record[] is not supported for SQL functions.

@dnwpark dnwpark force-pushed the array-of-array branch 4 times, most recently from f861a04 to 693b4cf Compare March 6, 2025 23:51
@dnwpark dnwpark force-pushed the array-of-array branch 3 times, most recently from 6403e0a to b8fadd0 Compare March 14, 2025 00:06
Copy link
Member

@msullivan msullivan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work!

Please try to document and clarify the Polymorphism logic; I had trouble following it.

Comment on lines +60 to +64
class Polymorphism(s_enum.StrEnum):
NotUsed = 'NotUsed'
Simple = 'Simple'
Array = 'Array'
Collection = 'Collection'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new mechanism needs documentation, I think

Comment on lines 132 to 136
def array_get_inner_array(
wrapped_array: pgast.BaseExpr,
array_typeref: irast.TypeRef,
) -> pgast.BaseExpr:
# Nested arrays wrap their inner arrays in a tuple
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make this a docstring comment, and put in the comment the SQL that this generates.
(We don't do this universally, but should!)

Comment on lines +1363 to +1366
@test.xerror("""
edb.errors.InternalServerError: return type record[] is not supported
for SQL functions
""")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do some of these work? If so, let's split the test

Comment on lines +672 to +675
@test.xerror("""
edb.errors.InternalServerError: return type record[] is not supported
for SQL functions
""")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the eventual fix for this category of problems (which also shows up with arrays of tuples currently) is to inline the body of the function. (Which is defined as SQL)

alias AliasArrayOfArrayOfScalar := [[1, 2, 3], [4, 5, 6]];

alias CardsByCost := array_agg((
for cost in range_unpack(range(0, max(Card.cost)))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

max+1

Comment on lines 1317 to 1331
async def test_edgeql_aliases_array_of_array_02(self):
await self.assert_query_result(
r"""
select CardsByCost;
""",
[
[
[],
['Imp', 'Dwarf', 'Sprite'],
['Bog monster', 'Giant eagle'],
['Giant turtle', 'Golem'],
['Djinn']
],
],
)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hell yeah

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, though it doesn't work yet :P

@@ -121,7 +123,7 @@ async def _test_sys_query_stats(self):
async def _test_sys_query_stats_with_tag(self):
# Test tags are correctly set
tag = 'test_tag'
self.con = self.con.with_annotation('tag', tag)
self.con = self.con.with_query_tag(tag)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you split the gel-python upgrade to a standalone PR updating it to whatever the latest normal version is?

@@ -382,6 +382,8 @@ def pg_type_from_ir_typeref(
or (irtyputils.is_abstract(ir_typeref.subtypes[0])
and irtyputils.is_scalar(ir_typeref.subtypes[0]))):
return ('anyarray',)
elif (irtyputils.is_array(ir_typeref.subtypes[0])):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: drop the extra parens

@@ -237,6 +237,54 @@ def array_as_json_object(
)
] if needs_unnest else [],
)
elif irtyputils.is_array(el_type):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Put a comment about why the complication

Comment on lines 3456 to 3673
has_array_polymorphic_arg = any(
ir_arg.polymorphism == qltypes.Polymorphism.Array
for ir_arg in expr.args.values()
)
wrap_single_polymorphic_args = (
has_array_polymorphic_arg
or expr.return_polymorphism == qltypes.Polymorphism.Array
)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add some more comments here? I don't totally understand why we need to wrap arguments

@dnwpark dnwpark force-pushed the array-of-array branch 5 times, most recently from 781cd6c to 11d0b2a Compare March 17, 2025 22:30
@dnwpark dnwpark requested a review from aljazerzen March 17, 2025 22:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants