summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShohei YOSHIDA <syohex@gmail.com>2023-08-27 14:59:03 -0700
committerBart Schaefer <schaefer@zsh.org>2023-08-27 14:59:03 -0700
commit660a629864ba2493b473f749b8bc010bcbbb0cf0 (patch)
tree9a2a9d04d15e7a7e7971349e7cf99620ea7a54d6
parent094f230e36a4de266921ed21c0d8f3f37e634073 (diff)
downloadzsh-660a629864ba2493b473f749b8bc010bcbbb0cf0.tar.gz
zsh-660a629864ba2493b473f749b8bc010bcbbb0cf0.zip
52034: update sqlite3 completion for version 3.42.0
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_sqlite4
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3849db569..a70adefdd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-08-27 Bart Schaefer <schaefer@zsh.org>
+
+ * Shohei YOSHIDA: 52034: Completion/Unix/Command/_sqlite:
+ update for version 3.42.0
+
2023-08-22 Peter Stephenson <p.stephenson@samsung.com>
* Nojus Gudinavičius: users/29175: Src/Zle/zle_hist.c: don't
diff --git a/Completion/Unix/Command/_sqlite b/Completion/Unix/Command/_sqlite
index 7ef3c6daa..6425732f1 100644
--- a/Completion/Unix/Command/_sqlite
+++ b/Completion/Unix/Command/_sqlite
@@ -55,9 +55,13 @@ options+=(
$^dashes'-mmap[set default mmap size]:size'
$^dashes'-newline[set output row separator]:separator [\n]'
$^dashes'-nofollow[refuse to open symbolic links to database files]'
+ $^dashes'-nonce[set the safe-mode escape nonce]:string'
$^dashes'-pagecache[specify size and number of slots for page cache memory]:size (bytes): :slots'
+ $^dashes'-pcachetrace[trace all page cache operations]'
$^dashes'-readonly[open the database read-only]'
+ $^dashes'-safe[enable safe-mode]'
$^dashes'-stats[print memory stats before each finalize]'
+ $^dashes'-unsafe-testing[allow unsafe commands and modes for testing]'
$^dashes'-vfs[use specified default VFS]:vfs:(unix-dotfile unix-excl unix-none unix-namedsem)'
$^dashes'-zip[open the file as a ZIP Archive]'
)