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
Using a transaction (BEGIN ... COMMIT) and a backup (BACKUP DATABASE) right afterwards in SQLscript,
frequently a "pending transaction" error is logged. Thus, I propose a new SQLscript command WAIT, which pauses until all pending transactions are completed.
Expected behavior
SQLscript:
BEGIN;
something
COMMIT;
WAIT;
BACKUP DATABASE;
Current behavior
SQLscript:
BEGIN;
something
COMMIT;
BACKUP DATABASE;
Log:
SEVER [BackupDatabaseStatement] Found pending transaction. Rolling it back before the backup...
The text was updated successfully, but these errors were encountered:
ArcadeDB Version:
24.6.1
Using a transaction (
BEGIN
...COMMIT
) and a backup (BACKUP DATABASE
) right afterwards in SQLscript,frequently a "pending transaction" error is logged. Thus, I propose a new SQLscript command
WAIT
, which pauses until all pending transactions are completed.Expected behavior
SQLscript:
Current behavior
SQLscript:
Log:
The text was updated successfully, but these errors were encountered: