duckdb 0.4.1-dev2265.0 → 0.4.1-dev2295.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.
@@ -74,6 +74,10 @@ describe('Extension loading', function() {
74
74
  const extension_path = ext;
75
75
  const extension_name = ext.replace(/^.*[\\\/]/, '');
76
76
 
77
+ if (extension_name.startsWith('parquet')) { // Parquet is built-in in the Node client, so skip
78
+ continue;
79
+ }
80
+
77
81
  it(extension_name, function(done) {
78
82
  db.run(`LOAD '${extension_path}';`, function(err) {
79
83
  if (err) {