New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

dissect.sql

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dissect.sql - pypi Package Compare versions

Comparing version
3.12.dev2
to
3.12.dev3
+1
-1
dissect.sql.egg-info/PKG-INFO
Metadata-Version: 2.4
Name: dissect.sql
Version: 3.12.dev2
Version: 3.12.dev3
Summary: A Dissect module implementing a parsers for the SQLite database file format, commonly used by applications to store configuration data

@@ -5,0 +5,0 @@ Author-email: Dissect Team <dissect@fox-it.com>

@@ -94,3 +94,3 @@ from __future__ import annotations

if "(" in column_def and column_name.upper().startswith(
if column_name.upper().startswith(
(

@@ -97,0 +97,0 @@ "CONSTRAINT",

Metadata-Version: 2.4
Name: dissect.sql
Version: 3.12.dev2
Version: 3.12.dev3
Summary: A Dissect module implementing a parsers for the SQLite database file format, commonly used by applications to store configuration data

@@ -5,0 +5,0 @@ Author-email: Dissect Team <dissect@fox-it.com>

@@ -110,14 +110,2 @@ from __future__ import annotations

),
(
"CREATE TABLE TableName (Id INTEGER PRIMARY KEY, UniqueKey TEXT NOT NULL UNIQUE, Name TEXT NOT NULL)",
(
"Id",
[
("Id", "INTEGER PRIMARY KEY"),
("UniqueKey", "TEXT NOT NULL UNIQUE"),
("Name", "TEXT NOT NULL"),
],
[],
),
),
]

@@ -124,0 +112,0 @@