1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
import re
from sqlalchemy import Column
from sqlalchemy import Identity
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import Sequence
from sqlalchemy import Table
from sqlalchemy import testing
from sqlalchemy.engine import URL
from sqlalchemy.exc import ArgumentError
from sqlalchemy.schema import CreateTable
from sqlalchemy.testing import assert_raises_message
from sqlalchemy.testing import fixtures
from sqlalchemy.testing import is_
from sqlalchemy.testing import is_not_
class _IdentityDDLFixture(testing.AssertsCompiledSQL):
__backend__ = True
@testing.combinations(
(dict(always=True), "ALWAYS AS IDENTITY"),
(
dict(always=False, start=5),
"BY DEFAULT AS IDENTITY (START WITH 5)",
),
(
dict(always=True, increment=2),
"ALWAYS AS IDENTITY (INCREMENT BY 2)",
),
(
dict(increment=2, start=5),
"BY DEFAULT AS IDENTITY (INCREMENT BY 2 START WITH 5)",
),
(
dict(always=True, increment=2, start=0, minvalue=0),
"ALWAYS AS IDENTITY (INCREMENT BY 2 START WITH 0 MINVALUE 0)",
),
(
dict(always=False, increment=2, start=1, maxvalue=5),
"BY DEFAULT AS IDENTITY (INCREMENT BY 2 START WITH 1 MAXVALUE 5)",
),
(
dict(always=True, increment=2, start=1, nomaxvalue=True),
"ALWAYS AS IDENTITY (INCREMENT BY 2 START WITH 1 NO MAXVALUE)",
),
(
dict(always=False, increment=2, start=0, nominvalue=True),
"BY DEFAULT AS IDENTITY "
"(INCREMENT BY 2 START WITH 0 NO MINVALUE)",
),
(
dict(always=True, start=1, maxvalue=10, cycle=True),
"ALWAYS AS IDENTITY (START WITH 1 MAXVALUE 10 CYCLE)",
),
(
dict(always=False, cache=1000, order=True),
"BY DEFAULT AS IDENTITY (CACHE 1000 ORDER)",
),
(dict(order=True, cycle=True), "BY DEFAULT AS IDENTITY (ORDER CYCLE)"),
(
dict(order=False, cycle=False),
"BY DEFAULT AS IDENTITY (NO ORDER NO CYCLE)",
),
)
def test_create_ddl(self, identity_args, text):
if getattr(
self, "__dialect__", None
) != "default_enhanced" and testing.against("oracle"):
text = text.replace("NO MINVALUE", "NOMINVALUE")
text = text.replace("NO MAXVALUE", "NOMAXVALUE")
text = text.replace("NO CYCLE", "NOCYCLE")
text = text.replace("NO ORDER", "NOORDER")
t = Table(
"foo_table",
MetaData(),
Column("foo", Integer(), Identity(**identity_args)),
)
self.assert_compile(
CreateTable(t),
"CREATE TABLE foo_table (foo INTEGER GENERATED %s)" % text,
)
t2 = t.to_metadata(MetaData())
self.assert_compile(
CreateTable(t2),
"CREATE TABLE foo_table (foo INTEGER GENERATED %s)" % text,
)
def test_other_options(self):
t = Table(
"foo_table",
MetaData(),
Column(
"foo",
Integer(),
Identity(always=True, start=3),
nullable=False,
unique=True,
),
)
self.assert_compile(
CreateTable(t),
"CREATE TABLE foo_table ("
"foo INTEGER GENERATED ALWAYS AS IDENTITY (START "
"WITH 3), UNIQUE (foo))",
)
def test_autoincrement_true(self):
t = Table(
"foo_table",
MetaData(),
Column(
"foo",
Integer(),
Identity(always=True, start=3),
primary_key=True,
autoincrement=True,
),
)
self.assert_compile(
CreateTable(t),
"CREATE TABLE foo_table ("
"foo INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 3)"
", PRIMARY KEY (foo))",
)
def test_nullable_kwarg(self):
t = Table(
"t",
MetaData(),
Column("a", Integer(), Identity(), nullable=False),
Column("b", Integer(), Identity(), nullable=True),
Column("c", Integer(), Identity()),
)
is_(t.c.a.nullable, False)
is_(t.c.b.nullable, True)
is_(t.c.c.nullable, False)
nullable = ""
if getattr(
self, "__dialect__", None
) != "default_enhanced" and testing.against("postgresql"):
nullable = " NULL"
self.assert_compile(
CreateTable(t),
(
"CREATE TABLE t ("
"a INTEGER GENERATED BY DEFAULT AS IDENTITY, "
"b INTEGER GENERATED BY DEFAULT AS IDENTITY%s, "
"c INTEGER GENERATED BY DEFAULT AS IDENTITY"
")"
)
% nullable,
)
class IdentityDDL(_IdentityDDLFixture, fixtures.TestBase):
# this uses the connection dialect
__requires__ = ("identity_columns_standard",)
def test_on_null(self):
t = Table(
"foo_table",
MetaData(),
Column(
"foo",
Integer(),
Identity(always=False, on_null=True, start=42, order=True),
),
)
text = " ON NULL" if testing.against("oracle") else ""
self.assert_compile(
CreateTable(t),
(
"CREATE TABLE foo_table (foo INTEGER GENERATED BY DEFAULT"
+ text
+ " AS IDENTITY (START WITH 42 ORDER))"
),
)
class DefaultDialectIdentityDDL(_IdentityDDLFixture, fixtures.TestBase):
# this uses the default dialect
__dialect__ = "default_enhanced"
class NotSupportingIdentityDDL(testing.AssertsCompiledSQL, fixtures.TestBase):
def get_dialect(self, dialect):
dd = URL.create(dialect).get_dialect()()
if dialect in {"oracle", "postgresql"}:
dd.supports_identity_columns = False
return dd
@testing.combinations("sqlite", "mysql", "mariadb", "postgresql", "oracle")
def test_identity_is_ignored(self, dialect):
t = Table(
"foo_table",
MetaData(),
Column("foo", Integer(), Identity("always", start=3)),
)
t_exp = Table(
"foo_table",
MetaData(),
Column("foo", Integer(), nullable=False),
)
dialect = self.get_dialect(dialect)
exp = CreateTable(t_exp).compile(dialect=dialect).string
self.assert_compile(
CreateTable(t), re.sub(r"[\n\t]", "", exp), dialect=dialect
)
@testing.combinations(
"sqlite",
"mysql",
"mariadb",
"postgresql",
"oracle",
argnames="dialect",
)
@testing.combinations(True, "auto", argnames="autoincrement")
def test_identity_is_ignored_in_pk(self, dialect, autoincrement):
t = Table(
"foo_table",
MetaData(),
Column(
"foo",
Integer(),
Identity("always", start=3),
primary_key=True,
autoincrement=autoincrement,
),
)
t_exp = Table(
"foo_table",
MetaData(),
Column(
"foo", Integer(), primary_key=True, autoincrement=autoincrement
),
)
dialect = self.get_dialect(dialect)
exp = CreateTable(t_exp).compile(dialect=dialect).string
self.assert_compile(
CreateTable(t), re.sub(r"[\n\t]", "", exp), dialect=dialect
)
class IdentityTest(fixtures.TestBase):
def test_server_default_onupdate(self):
text = (
"A column with an Identity object cannot specify a "
"server_default or a server_onupdate argument"
)
def fn(**kwargs):
Table(
"t",
MetaData(),
Column("y", Integer, Identity(), **kwargs),
)
assert_raises_message(ArgumentError, text, fn, server_default="42")
assert_raises_message(ArgumentError, text, fn, server_onupdate="42")
def test_to_metadata(self):
identity1 = Identity("by default", on_null=True, start=123)
m = MetaData()
t = Table(
"t", m, Column("x", Integer), Column("y", Integer, identity1)
)
is_(identity1.column, t.c.y)
# is_(t.c.y.server_onupdate, identity1)
is_(t.c.y.server_default, identity1)
m2 = MetaData()
t2 = t.to_metadata(m2)
identity2 = t2.c.y.server_default
is_not_(identity1, identity2)
is_(identity1.column, t.c.y)
# is_(t.c.y.server_onupdate, identity1)
is_(t.c.y.server_default, identity1)
is_(identity2.column, t2.c.y)
# is_(t2.c.y.server_onupdate, identity2)
is_(t2.c.y.server_default, identity2)
def test_autoincrement_column(self):
t = Table(
"t",
MetaData(),
Column("y", Integer, Identity(), primary_key=True),
)
assert t._autoincrement_column is t.c.y
t2 = Table("t2", MetaData(), Column("y", Integer, Identity()))
assert t2._autoincrement_column is None
def test_identity_and_sequence(self):
def go():
return Table(
"foo_table",
MetaData(),
Column("foo", Integer(), Identity(), Sequence("foo_seq")),
)
assert_raises_message(
ArgumentError,
"An column cannot specify both Identity and Sequence.",
go,
)
def test_identity_autoincrement_false(self):
def go():
return Table(
"foo_table",
MetaData(),
Column("foo", Integer(), Identity(), autoincrement=False),
)
assert_raises_message(
ArgumentError,
"A column with an Identity object cannot specify "
"autoincrement=False",
go,
)
|