Files
sqlalchemy/test/dialect/mysql/test_query.py
T
Mike Bayer 1afb820427 expand paren rules for default rendering, sqlite/mysql
Expanded the rules for when to apply parenthesis to a server default in DDL
to suit the general case of a default string that contains non-word
characters such as spaces or operators and is not a string literal.

Fixed issue in MySQL server default reflection where a default that has
spaces would not be correctly reflected.  Additionally, expanded the rules
for when to apply parenthesis to a server default in DDL to suit the
general case of a default string that contains non-word characters such as
spaces or operators and is not a string literal.

Fixes: #12425
Change-Id: Ie40703dcd5fdc135025d676c01baba57ff3b71ad
2025-03-17 15:02:30 -04:00

471 lines
14 KiB
Python

from sqlalchemy import all_
from sqlalchemy import and_
from sqlalchemy import any_
from sqlalchemy import Boolean
from sqlalchemy import cast
from sqlalchemy import Column
from sqlalchemy import Computed
from sqlalchemy import DateTime
from sqlalchemy import delete
from sqlalchemy import exc
from sqlalchemy import false
from sqlalchemy import ForeignKey
from sqlalchemy import func
from sqlalchemy import Integer
from sqlalchemy import literal_column
from sqlalchemy import MetaData
from sqlalchemy import or_
from sqlalchemy import schema
from sqlalchemy import select
from sqlalchemy import String
from sqlalchemy import Table
from sqlalchemy import testing
from sqlalchemy import text
from sqlalchemy import true
from sqlalchemy import update
from sqlalchemy.dialects.mysql import limit
from sqlalchemy.testing import assert_raises
from sqlalchemy.testing import combinations
from sqlalchemy.testing import eq_
from sqlalchemy.testing import expect_warnings
from sqlalchemy.testing import fixtures
from sqlalchemy.testing import is_
from sqlalchemy.testing.assertsql import CompiledSQL
from sqlalchemy.testing.fixtures import fixture_session
class IdiosyncrasyTest(fixtures.TestBase):
__only_on__ = "mysql", "mariadb"
__backend__ = True
def test_is_boolean_symbols_despite_no_native(self, connection):
with expect_warnings("Datatype BOOL does not support CAST"):
is_(
connection.scalar(select(cast(true().is_(true()), Boolean))),
True,
)
with expect_warnings("Datatype BOOL does not support CAST"):
is_(
connection.scalar(
select(cast(true().is_not(true()), Boolean))
),
False,
)
with expect_warnings("Datatype BOOL does not support CAST"):
is_(
connection.scalar(select(cast(false().is_(false()), Boolean))),
True,
)
class ServerDefaultCreateTest(fixtures.TestBase):
@testing.combinations(
(Integer, text("10")),
(Integer, text("'10'")),
(Integer, "10"),
(Boolean, true()),
(Integer, text("3+5"), testing.requires.mysql_expression_defaults),
(Integer, text("3 + 5"), testing.requires.mysql_expression_defaults),
(Integer, text("(3 * 5)"), testing.requires.mysql_expression_defaults),
(DateTime, func.now()),
(
Integer,
literal_column("3") + literal_column("5"),
testing.requires.mysql_expression_defaults,
),
argnames="datatype, default",
)
def test_create_server_defaults(
self, connection, metadata, datatype, default
):
t = Table(
"t",
metadata,
Column("id", Integer, primary_key=True),
Column("thecol", datatype, server_default=default),
)
t.create(connection)
class MatchTest(fixtures.TablesTest):
__only_on__ = "mysql", "mariadb"
__backend__ = True
@classmethod
def define_tables(cls, metadata):
Table(
"cattable",
metadata,
Column("id", Integer, primary_key=True),
Column("description", String(50)),
mysql_engine="MyISAM",
mariadb_engine="MyISAM",
)
Table(
"matchtable",
metadata,
Column("id", Integer, primary_key=True),
Column("title", String(200)),
Column("category_id", Integer, ForeignKey("cattable.id")),
mysql_engine="MyISAM",
mariadb_engine="MyISAM",
)
@classmethod
def insert_data(cls, connection):
cattable, matchtable = cls.tables("cattable", "matchtable")
connection.execute(
cattable.insert(),
[
{"id": 1, "description": "Python"},
{"id": 2, "description": "Ruby"},
],
)
connection.execute(
matchtable.insert(),
[
{
"id": 1,
"title": "Agile Web Development with Ruby On Rails",
"category_id": 2,
},
{"id": 2, "title": "Dive Into Python", "category_id": 1},
{
"id": 3,
"title": "Programming Matz's Ruby",
"category_id": 2,
},
{
"id": 4,
"title": "The Definitive Guide to Django",
"category_id": 1,
},
{"id": 5, "title": "Python in a Nutshell", "category_id": 1},
],
)
def test_simple_match(self, connection):
matchtable = self.tables.matchtable
results = connection.execute(
matchtable.select()
.where(matchtable.c.title.match("python"))
.order_by(matchtable.c.id)
).fetchall()
eq_([2, 5], [r.id for r in results])
def test_not_match(self, connection):
matchtable = self.tables.matchtable
results = connection.execute(
matchtable.select()
.where(~matchtable.c.title.match("python"))
.order_by(matchtable.c.id)
)
eq_([1, 3, 4], [r.id for r in results])
def test_simple_match_with_apostrophe(self, connection):
matchtable = self.tables.matchtable
results = connection.execute(
matchtable.select().where(matchtable.c.title.match("Matz's"))
).fetchall()
eq_([3], [r.id for r in results])
def test_return_value(self, connection):
matchtable = self.tables.matchtable
# test [ticket:3263]
result = connection.execute(
select(
matchtable.c.title.match("Agile Ruby Programming").label(
"ruby"
),
matchtable.c.title.match("Dive Python").label("python"),
matchtable.c.title,
).order_by(matchtable.c.id)
).fetchall()
eq_(
result,
[
(2.0, 0.0, "Agile Web Development with Ruby On Rails"),
(0.0, 2.0, "Dive Into Python"),
(2.0, 0.0, "Programming Matz's Ruby"),
(0.0, 0.0, "The Definitive Guide to Django"),
(0.0, 1.0, "Python in a Nutshell"),
],
)
def test_or_match(self, connection):
matchtable = self.tables.matchtable
results1 = connection.execute(
matchtable.select()
.where(
or_(
matchtable.c.title.match("nutshell"),
matchtable.c.title.match("ruby"),
)
)
.order_by(matchtable.c.id)
).fetchall()
eq_([1, 3, 5], [r.id for r in results1])
results2 = connection.execute(
matchtable.select()
.where(matchtable.c.title.match("nutshell ruby"))
.order_by(matchtable.c.id)
).fetchall()
eq_([1, 3, 5], [r.id for r in results2])
def test_and_match(self, connection):
matchtable = self.tables.matchtable
results1 = connection.execute(
matchtable.select().where(
and_(
matchtable.c.title.match("python"),
matchtable.c.title.match("nutshell"),
)
)
).fetchall()
eq_([5], [r.id for r in results1])
results2 = connection.execute(
matchtable.select().where(
matchtable.c.title.match("+python +nutshell")
)
).fetchall()
eq_([5], [r.id for r in results2])
def test_match_across_joins(self, connection):
matchtable = self.tables.matchtable
cattable = self.tables.cattable
results = connection.execute(
matchtable.select()
.where(
and_(
cattable.c.id == matchtable.c.category_id,
or_(
cattable.c.description.match("Ruby"),
matchtable.c.title.match("nutshell"),
),
)
)
.order_by(matchtable.c.id)
).fetchall()
eq_([1, 3, 5], [r.id for r in results])
class AnyAllTest(fixtures.TablesTest):
__only_on__ = "mysql", "mariadb"
__backend__ = True
@classmethod
def define_tables(cls, metadata):
Table(
"stuff",
metadata,
Column("id", Integer, primary_key=True),
Column("value", Integer),
)
@classmethod
def insert_data(cls, connection):
stuff = cls.tables.stuff
connection.execute(
stuff.insert(),
[
{"id": 1, "value": 1},
{"id": 2, "value": 2},
{"id": 3, "value": 3},
{"id": 4, "value": 4},
{"id": 5, "value": 5},
],
)
def test_any_w_comparator(self, connection):
stuff = self.tables.stuff
stmt = select(stuff.c.id).where(
stuff.c.value > any_(select(stuff.c.value).scalar_subquery())
)
eq_(connection.execute(stmt).fetchall(), [(2,), (3,), (4,), (5,)])
def test_all_w_comparator(self, connection):
stuff = self.tables.stuff
stmt = select(stuff.c.id).where(
stuff.c.value >= all_(select(stuff.c.value).scalar_subquery())
)
eq_(connection.execute(stmt).fetchall(), [(5,)])
def test_any_literal(self, connection):
stuff = self.tables.stuff
stmt = select(4 == any_(select(stuff.c.value).scalar_subquery()))
is_(connection.execute(stmt).scalar(), True)
class ComputedTest(fixtures.TestBase):
__only_on__ = "mysql >= 5.7", "mariadb"
__backend__ = True
@combinations(
(True),
(False),
(None),
("unset"),
argnames="nullable",
)
def test_column_computed_for_nullable(self, connection, nullable):
"""test #10056
we want to make sure that nullable is always set to True for computed
column as it is not supported for mariaDB
ref: https://mariadb.com/kb/en/generated-columns/#statement-support
"""
m = MetaData()
kwargs = {"nullable": nullable} if nullable != "unset" else {}
t = Table(
"t",
m,
Column("x", Integer),
Column("y", Integer, Computed("x + 2"), **kwargs),
)
if connection.engine.dialect.name == "mariadb" and nullable in (
False,
None,
):
assert_raises(
exc.ProgrammingError,
connection.execute,
schema.CreateTable(t),
)
# If assertion happens table won't be created so
# return from test
return
# Create and then drop table
connection.execute(schema.CreateTable(t))
connection.execute(schema.DropTable(t))
class LimitORMTest(fixtures.MappedTest):
__only_on__ = "mysql >= 5.7", "mariadb"
__backend__ = True
@classmethod
def define_tables(cls, metadata):
Table(
"users",
metadata,
Column("id", Integer, primary_key=True),
Column("name", String(32)),
Column("age_int", Integer),
)
@classmethod
def setup_classes(cls):
class User(cls.Comparable):
pass
@classmethod
def insert_data(cls, connection):
users = cls.tables.users
connection.execute(
users.insert(),
[
dict(id=1, name="john", age_int=25),
dict(id=2, name="jack", age_int=47),
dict(id=3, name="jill", age_int=29),
dict(id=4, name="jane", age_int=37),
],
)
@classmethod
def setup_mappers(cls):
User = cls.classes.User
users = cls.tables.users
cls.mapper_registry.map_imperatively(
User,
users,
properties={
"age": users.c.age_int,
},
)
def test_update_limit_orm_select(self):
User = self.classes.User
s = fixture_session()
with self.sql_execution_asserter() as asserter:
s.execute(
update(User)
.where(User.name.startswith("j"))
.ext(limit(2))
.values({"age": User.age + 3})
)
asserter.assert_(
CompiledSQL(
"UPDATE users SET age_int=(users.age_int + %s) "
"WHERE (users.name LIKE concat(%s, '%%')) "
"LIMIT __[POSTCOMPILE_param_1]",
[{"age_int_1": 3, "name_1": "j", "param_1": 2}],
dialect="mysql",
),
)
def test_delete_limit_orm_select(self):
User = self.classes.User
s = fixture_session()
with self.sql_execution_asserter() as asserter:
s.execute(
delete(User).where(User.name.startswith("j")).ext(limit(2))
)
asserter.assert_(
CompiledSQL(
"DELETE FROM users WHERE (users.name LIKE concat(%s, '%%')) "
"LIMIT __[POSTCOMPILE_param_1]",
[{"name_1": "j", "param_1": 2}],
dialect="mysql",
),
)
def test_update_limit_legacy_query(self):
User = self.classes.User
s = fixture_session()
with self.sql_execution_asserter() as asserter:
s.query(User).where(User.name.startswith("j")).ext(
limit(2)
).update({"age": User.age + 3})
asserter.assert_(
CompiledSQL(
"UPDATE users SET age_int=(users.age_int + %s) "
"WHERE (users.name LIKE concat(%s, '%%')) "
"LIMIT __[POSTCOMPILE_param_1]",
[{"age_int_1": 3, "name_1": "j", "param_1": 2}],
dialect="mysql",
),
)
def test_delete_limit_legacy_query(self):
User = self.classes.User
s = fixture_session()
with self.sql_execution_asserter() as asserter:
s.query(User).where(User.name.startswith("j")).ext(
limit(2)
).delete()
asserter.assert_(
CompiledSQL(
"DELETE FROM users WHERE (users.name LIKE concat(%s, '%%')) "
"LIMIT __[POSTCOMPILE_param_1]",
[{"name_1": "j", "param_1": 2}],
dialect="mysql",
),
)