File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,10 @@ backup-and-swap-in functionality work properly. Given how SQLite aggressively
125125[ locks] ( https://sqlite.org/lockingv3.html ) the database anyway, it's probably
126126not worth the effort.
127127
128+ - When inspecting the data types of columns, SQLite returns a blank value for
129+ columns in views (even if it's the result of a CAST) and in certain cases
130+ for columns in tables. These will show up in the generated docs as type 'UNKNOWN'.
131+
128132## SQLite Extensions
129133
130134These modules from SQLean are needed for certain functionality to work:
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ def _get_one_catalog(
166166 '' ,
167167 table_row ['name' ],
168168 table_row ['cid' ],
169- table_row ['type' ] or 'TEXT ' ,
169+ table_row ['type' ] or 'UNKNOWN ' ,
170170 ''
171171 ])
172172
You can’t perform that action at this time.
0 commit comments