From 6ffd4215a20e67e3d47cb8392d7c9e4b406d8acd Mon Sep 17 00:00:00 2001 From: bit-aloo Date: Fri, 8 Aug 2025 02:52:45 +0530 Subject: [PATCH] sort Pragma names in lexicographical order --- vendored/sqlite3-parser/src/parser/ast/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendored/sqlite3-parser/src/parser/ast/mod.rs b/vendored/sqlite3-parser/src/parser/ast/mod.rs index 1b5286a6e..e7ccfdc0e 100644 --- a/vendored/sqlite3-parser/src/parser/ast/mod.rs +++ b/vendored/sqlite3-parser/src/parser/ast/mod.rs @@ -1814,6 +1814,8 @@ pub enum PragmaName { PageCount, /// Return the page size of the database in bytes. PageSize, + /// make connection query only + QueryOnly, /// Returns schema version of the database file. SchemaVersion, /// returns information about the columns of a table @@ -1824,8 +1826,6 @@ pub enum PragmaName { UserVersion, /// trigger a checkpoint to run on database(s) if WAL is enabled WalCheckpoint, - /// make connection query only - QueryOnly, } /// `CREATE TRIGGER` time