duckdb 0.6.2-dev772.0 → 0.6.2-dev781.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#ifndef DUCKDB_VERSION
|
|
2
|
-
#define DUCKDB_VERSION "0.6.2-
|
|
2
|
+
#define DUCKDB_VERSION "0.6.2-dev781"
|
|
3
3
|
#endif
|
|
4
4
|
#ifndef DUCKDB_SOURCE_ID
|
|
5
|
-
#define DUCKDB_SOURCE_ID "
|
|
5
|
+
#define DUCKDB_SOURCE_ID "c9893aabda"
|
|
6
6
|
#endif
|
|
7
7
|
#include "duckdb/function/table/system_functions.hpp"
|
|
8
8
|
#include "duckdb/main/database.hpp"
|
|
@@ -136,7 +136,7 @@ unique_ptr<QueryResult> Connection::QueryParamsRecursive(const string &query, ve
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
unique_ptr<TableDescription> Connection::TableInfo(const string &table_name) {
|
|
139
|
-
return TableInfo(
|
|
139
|
+
return TableInfo(INVALID_SCHEMA, table_name);
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
unique_ptr<TableDescription> Connection::TableInfo(const string &schema_name, const string &table_name) {
|