Fantix King

Results 97 issues of Fantix King

- EdgeDB Version: 2.0+88c1706 Steps to Reproduce: 1. Initialize a project with the schema below, create and apply migration with the CLI. 2. Modify the definition of B to `type...

bug
migrations
compiler

- EdgeDB Version: 2.0+88c1706, 2.1+52c90a7 - Schema: ``` type A { access policy soft_delete allow select, update read, insert using (NOT (EXISTS (.ts))); access policy update_write allow update write ;...

bug

- EdgeDB Version: 2.0+88c1706, 2.1+52c90a7 This fails: ``` edgedb> start migration to { ....... module default { ....... scalar type E extending enum; ....... function f(variadic e: E) -> bool...

``` EdgeDB 2.0-rc.3+f035802 (repl 2.1.0) Type \help for help, \quit to quit. edgedb> create superuser role xxx { ....... set password := () ....... }; edgedb error: InternalServerError: string index...

```python import asyncio import edgedb async def main(): client = edgedb.create_async_client("_localdev") async for tx in client.transaction(): async with tx: print(await tx.query_single("SELECT 123")) client.terminate() await client.aclose() asyncio.run(main()) ``` This fails with:...

Also added tests in test_sync_query.py, and use only sync client in sync_* tests. This is a part of #289

Fixes #412 * `before_cursor_execute()` and `after_cursor_execute()` is untouched - maybe we can create new events for `async_execute()` if needed by someone. * @wwwjfy any comments about the buggy `rowcount` please?...