You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On 0e5acf1 when I copy-paste two SQL statements at once, then only the first is executed. E.g. when copying and pasting
CREATETABLEt (
a INTPRIMARY KEY,
b INT
);
SELECT sum_int(a) OVER (ORDER BY b ASC NULLS LAST RANGE 0 PRECEDING)
FROM t;
I get this
root@127.0.0.1:26257/defaultdb> CREATE TABLE t (
-> a INT PRIMARY KEY,
-> b INT
-> );
CREATE TABLE
Time: 4ms total (execution 4ms / network 0ms)
root@127.0.0.1:26257/defaultdb>
Is this behavior expected? Am I missing something?
On 0e5acf1 when I copy-paste two SQL statements at once, then only the first is executed. E.g. when copying and pasting
I get this
Is this behavior expected? Am I missing something?
Jira issue: CRDB-22840
Epic: CRDB-22182
The text was updated successfully, but these errors were encountered: