Skip to content
Snippets Groups Projects
Commit 180ab451 authored by Andrius Merkys's avatar Andrius Merkys
Browse files

Refreshing patches.

parent 2ce4b3ab
No related branches found
No related tags found
No related merge requests found
From: =?utf-8?q?Piotr_O=C5=BCarowski?= <piotr@debian.org>
Date: Mon, 11 Jan 2021 15:04:35 +0100
Subject: escape text column name - fixes for SA v1.3.22
---
tests/test_agatesql.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test_agatesql.py b/tests/test_agatesql.py
index 9fcb3ba..e9fd52b 100644
--- a/tests/test_agatesql.py
+++ b/tests/test_agatesql.py
@@ -141,7 +141,7 @@ class TestSQL(agate.AgateTestCase):
self.assertEqual(statement.replace('\t', ' '), '''CREATE TABLE test_schema.test_table (
number DECIMAL(38, 3),
- text VARCHAR(1) NOT NULL,
+ `text` VARCHAR(1) NOT NULL,
boolean BOOL,
date DATE,
datetime TIMESTAMP NULL,
......@@ -6,15 +6,17 @@ Subject: No privacy breach
README.rst | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/README.rst b/README.rst
index d36587a..e03d369 100644
--- a/README.rst
+++ b/README.rst
@@ -1,19 +1,3 @@
-.. image:: https://travis-ci.org/wireservice/agate-sql.png
- :target: https://travis-ci.org/wireservice/agate-sql
@@ -1,23 +1,3 @@
-.. image:: https://github.com/wireservice/agate-sql/workflows/CI/badge.svg
- :target: https://github.com/wireservice/agate-sql/actions
- :alt: Build status
-
-.. image:: https://img.shields.io/pypi/dm/agate-sql.svg
- :target: https://pypi.python.org/pypi/agate-sql
- :alt: PyPI downloads
-
-.. image:: https://img.shields.io/pypi/v/agate-sql.svg
- :target: https://pypi.python.org/pypi/agate-sql
- :alt: Version
......
......@@ -6,11 +6,9 @@ Subject: Use packaged docs
docs/conf.py | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 67a300c..8c6051b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -29,8 +29,14 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
@@ -27,8 +27,14 @@
autodoc_member_order = 'bysource'
intersphinx_mapping = {
......
......@@ -6,12 +6,10 @@ Subject: no-crate
tests/test_agatesql.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test_agatesql.py b/tests/test_agatesql.py
index adf7311..9fcb3ba 100644
--- a/tests/test_agatesql.py
+++ b/tests/test_agatesql.py
@@ -149,7 +149,7 @@ class TestSQL(agate.AgateTestCase):
);''') # noqa
@@ -169,7 +169,7 @@
self.assertEqual(statement.replace('\t', ' '), dedent(expected))
def test_to_sql_create_statement_with_dialects(self):
- for dialect in ['crate', 'mssql', 'mysql', 'postgresql', 'sqlite']:
......
Use-packaged-docs.patch
No-privacy-breach.patch
no-crate.patch
0004-escape-text-column-name-fixes-for-SA-v1.3.22.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment