# Copyright (c) reifydb.com 2025
# This file is licensed under the MIT
# Test multiple sequential operations
admin 'create namespace ops'
admin 'create table ops::numbers{val: int4}'
command 'INSERT ops::numbers [{ val: 10 }, { val: 20 }]'
query 'from ops::numbers'
---
> +---------+-------------+-----------+
> | id | namespace | created |
> +---------+-------------+-----------+
> | 16385 | ops | true |
> +---------+-------------+-----------+
>
> +---------+-------------+-----------+-----------+
> | id | namespace | table | created |
> +---------+-------------+-----------+-----------+
> | 16385 | ops | numbers | true |
> +---------+-------------+-----------+-----------+
>
> +-------------+-----------+------------+
> | namespace | table | inserted |
> +-------------+-----------+------------+
> | ops | numbers | 2 |
> +-------------+-----------+------------+
>
> +-----------+----------------------------------+----------------------------------+-------+
> | #rownum | #created_at | #updated_at | val |
> +-----------+----------------------------------+----------------------------------+-------+
> | 2 | 1970-01-01T00:00:00.000000000Z | 1970-01-01T00:00:00.000000000Z | 20 |
> | 1 | 1970-01-01T00:00:00.000000000Z | 1970-01-01T00:00:00.000000000Z | 10 |
> +-----------+----------------------------------+----------------------------------+-------+
>