Skip to content

Commit 2e5e017

Browse files
committed
Fix #44: correctly deal with DEFAULT value ""
1 parent 3443b29 commit 2e5e017

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

data/db/issue44.db

16 KB
Binary file not shown.

src/sqlite_db.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ void SQLiteDB::GetTableInfo(const string &table_name, ColumnList &columns, vecto
166166
auto column_type = all_varchar ? LogicalType::VARCHAR : SQLiteUtils::TypeToLogicalType(sqlite_type);
167167

168168
ColumnDefinition column(std::move(sqlite_colname), std::move(column_type));
169-
if (!default_value.empty()) {
169+
if (!default_value.empty() && default_value != "\"\"") {
170170
auto expressions = Parser::ParseExpressionList(default_value);
171171
if (expressions.empty()) {
172172
throw InternalException("Expression list is empty");

test/sql/scanner/issue44.test

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# name: test/sql/scanner/issue44.test
2+
# description: Test issue #44
3+
# group: [sqlite_scanner]
4+
5+
require sqlite_scanner
6+
7+
query IIIIIII
8+
SELECT * FROM sqlite_scan('data/db/issue44.db', 'clusters_and_visits')
9+
----
10+
11+
query IIIIIII
12+
SELECT * FROM sqlite_scan('data/db/issue44.db', 'clusters')
13+
----
14+
15+
statement ok
16+
ATTACH 'data/db/issue44.db' AS test_db
17+
18+
query IIIIIII
19+
SELECT * FROM test_db.clusters_and_visits
20+
----
21+
22+
query IIIIIII
23+
SELECT * FROM test_db.clusters
24+
----

0 commit comments

Comments
 (0)