code SQL0023 · recovery permanent — an unchanged retry cannot succeed; retry machinery stops immediately
the log line · Report this thread
As it arrives in your log or error chain — example values stand where yours will:
schema version is newer than this build understands: schema "sqlstreams", version 3, build_version 2 -- upgrade the binary to one whose build version is at least 3 [SQL0023]
ACCEPTED ANSWER Posted: 2026-09-09
upgrade the binary to one whose build version is at least {version}
Helpful info.
the steps this database recorded, newest first
SELECT id, version, min_compatible_version, status, created_at FROM {schema}.migration_log ORDER BY id DESC LIMIT 20;
which step raised the floor past this build
SELECT version, min_compatible_version, created_at FROM {schema}.migration_log WHERE min_compatible_version > {build_version} ORDER BY version;
Nothing pasted yet — the queries above show their blanks.
Looking for a different code? Search every thread.