Store receivedAtCounter separately for unprocessed
This commit is contained in:
parent
0f5a01f2b2
commit
ca3f8b7df0
8 changed files with 50 additions and 4 deletions
|
@ -196,6 +196,7 @@ export type StickerPackType = Readonly<{
|
|||
export type UnprocessedType = {
|
||||
id: string;
|
||||
timestamp: number;
|
||||
receivedAtCounter: number | null;
|
||||
version: number;
|
||||
attempts: number;
|
||||
envelope?: string;
|
||||
|
|
|
@ -2969,6 +2969,7 @@ function saveUnprocessedSync(data: UnprocessedType): string {
|
|||
const {
|
||||
id,
|
||||
timestamp,
|
||||
receivedAtCounter,
|
||||
version,
|
||||
attempts,
|
||||
envelope,
|
||||
|
@ -2994,6 +2995,7 @@ function saveUnprocessedSync(data: UnprocessedType): string {
|
|||
INSERT OR REPLACE INTO unprocessed (
|
||||
id,
|
||||
timestamp,
|
||||
receivedAtCounter,
|
||||
version,
|
||||
attempts,
|
||||
envelope,
|
||||
|
@ -3006,6 +3008,7 @@ function saveUnprocessedSync(data: UnprocessedType): string {
|
|||
) values (
|
||||
$id,
|
||||
$timestamp,
|
||||
$receivedAtCounter,
|
||||
$version,
|
||||
$attempts,
|
||||
$envelope,
|
||||
|
@ -3020,6 +3023,7 @@ function saveUnprocessedSync(data: UnprocessedType): string {
|
|||
).run({
|
||||
id,
|
||||
timestamp,
|
||||
receivedAtCounter: receivedAtCounter ?? null,
|
||||
version,
|
||||
attempts,
|
||||
envelope: envelope || null,
|
||||
|
|
27
ts/sql/migrations/54-unprocessed-received-at-counter.ts
Normal file
27
ts/sql/migrations/54-unprocessed-received-at-counter.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { Database } from 'better-sqlite3';
|
||||
|
||||
import type { LoggerType } from '../../types/Logging';
|
||||
|
||||
export default function updateToSchemaVersion54(
|
||||
currentVersion: number,
|
||||
db: Database,
|
||||
logger: LoggerType
|
||||
): void {
|
||||
if (currentVersion >= 54) {
|
||||
return;
|
||||
}
|
||||
|
||||
db.transaction(() => {
|
||||
db.exec(
|
||||
`
|
||||
ALTER TABLE unprocessed ADD COLUMN receivedAtCounter INTEGER;
|
||||
`
|
||||
);
|
||||
|
||||
db.pragma('user_version = 54');
|
||||
})();
|
||||
logger.info('updateToSchemaVersion54: success!');
|
||||
}
|
|
@ -29,6 +29,7 @@ import updateToSchemaVersion50 from './50-fix-messages-unread-index';
|
|||
import updateToSchemaVersion51 from './51-centralize-conversation-jobs';
|
||||
import updateToSchemaVersion52 from './52-optimize-stories';
|
||||
import updateToSchemaVersion53 from './53-gv2-banned-members';
|
||||
import updateToSchemaVersion54 from './54-unprocessed-received-at-counter';
|
||||
|
||||
function updateToSchemaVersion1(
|
||||
currentVersion: number,
|
||||
|
@ -1921,6 +1922,7 @@ export const SCHEMA_VERSIONS = [
|
|||
updateToSchemaVersion51,
|
||||
updateToSchemaVersion52,
|
||||
updateToSchemaVersion53,
|
||||
updateToSchemaVersion54,
|
||||
];
|
||||
|
||||
export function updateSchema(db: Database, logger: LoggerType): void {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue