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
125
125
[ locks] ( https://sqlite.org/lockingv3.html ) the database anyway, it's probably
126
126
not worth the effort.
127
127
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
+
128
132
## SQLite Extensions
129
133
130
134
These 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(
166
166
'' ,
167
167
table_row ['name' ],
168
168
table_row ['cid' ],
169
- table_row ['type' ] or 'TEXT ' ,
169
+ table_row ['type' ] or 'UNKNOWN ' ,
170
170
''
171
171
])
172
172
You can’t perform that action at this time.
0 commit comments