/
opt
/
alt
/
python27
/
lib64
/
python2.7
/
site-packages
/
sqlalchemy
/
testing
/
/opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/testing
mkdir
upload
Name
Size
Mode
Actions
plugin/
-
0755
rm
suite/
-
0755
rm
assertions.py
18017
0644
edit
dl
rm
assertions.pyc
22509
0644
edit
dl
rm
assertions.pyo
20783
0644
edit
dl
rm
assertsql.py
13398
0644
edit
dl
rm
assertsql.pyc
15367
0644
edit
dl
rm
assertsql.pyo
15086
0644
edit
dl
rm
config.py
2680
0644
edit
dl
rm
config.pyc
4143
0644
edit
dl
rm
config.pyo
4057
0644
edit
dl
rm
engines.py
10437
0644
edit
dl
rm
engines.pyc
15446
0644
edit
dl
rm
engines.pyo
15277
0644
edit
dl
rm
entities.py
3203
0644
edit
dl
rm
entities.pyc
3314
0644
edit
dl
rm
entities.pyo
3314
0644
edit
dl
rm
exclusions.py
12765
0644
edit
dl
rm
exclusions.pyc
19908
0644
edit
dl
rm
exclusions.pyo
19726
0644
edit
dl
rm
fixtures.py
10814
0644
edit
dl
rm
fixtures.pyc
16586
0644
edit
dl
rm
fixtures.pyo
16502
0644
edit
dl
rm
mock.py
893
0644
edit
dl
rm
mock.pyc
780
0644
edit
dl
rm
mock.pyo
780
0644
edit
dl
rm
pickleable.py
2693
0644
edit
dl
rm
pickleable.pyc
7886
0644
edit
dl
rm
pickleable.pyo
7886
0644
edit
dl
rm
profiling.py
8513
0644
edit
dl
rm
profiling.pyc
8767
0644
edit
dl
rm
profiling.pyo
8767
0644
edit
dl
rm
provision.py
13263
0644
edit
dl
rm
provision.pyc
16866
0644
edit
dl
rm
provision.pyo
16866
0644
edit
dl
rm
replay_fixture.py
5875
0644
edit
dl
rm
replay_fixture.pyc
7665
0644
edit
dl
rm
replay_fixture.pyo
7665
0644
edit
dl
rm
requirements.py
26861
0644
edit
dl
rm
requirements.pyc
45518
0644
edit
dl
rm
requirements.pyo
45518
0644
edit
dl
rm
schema.py
3712
0644
edit
dl
rm
schema.pyc
3645
0644
edit
dl
rm
schema.pyo
3645
0644
edit
dl
rm
util.py
7738
0644
edit
dl
rm
util.pyc
11166
0644
edit
dl
rm
util.pyo
11124
0644
edit
dl
rm
warnings.py
1298
0644
edit
dl
rm
warnings.pyc
1402
0644
edit
dl
rm
warnings.pyo
1402
0644
edit
dl
rm
__init__.py
2362
0644
edit
dl
rm
__init__.pyc
2560
0644
edit
dl
rm
__init__.pyo
2560
0644
edit
dl
rm
Edit:
/opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/testing/schema.py
(3712B)
# testing/schema.py # Copyright (C) 2005-2019 the SQLAlchemy authors and contributors # <see AUTHORS file> # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php from . import config from . import exclusions from .. import event from .. import schema __all__ = ["Table", "Column"] table_options = {} def Table(*args, **kw): """A schema.Table wrapper/hook for dialect-specific tweaks.""" test_opts = {k: kw.pop(k) for k in list(kw) if k.startswith("test_")} kw.update(table_options) if exclusions.against(config._current, "mysql"): if ( "mysql_engine" not in kw and "mysql_type" not in kw and "autoload_with" not in kw ): if "test_needs_fk" in test_opts or "test_needs_acid" in test_opts: kw["mysql_engine"] = "InnoDB" else: kw["mysql_engine"] = "MyISAM" # Apply some default cascading rules for self-referential foreign keys. # MySQL InnoDB has some issues around selecting self-refs too. if exclusions.against(config._current, "firebird"): table_name = args[0] unpack = config.db.dialect.identifier_preparer.unformat_identifiers # Only going after ForeignKeys in Columns. May need to # expand to ForeignKeyConstraint too. fks = [ fk for col in args if isinstance(col, schema.Column) for fk in col.foreign_keys ] for fk in fks: # root around in raw spec ref = fk._colspec if isinstance(ref, schema.Column): name = ref.table.name else: # take just the table name: on FB there cannot be # a schema, so the first element is always the # table name, possibly followed by the field name name = unpack(ref)[0] if name == table_name: if fk.ondelete is None: fk.ondelete = "CASCADE" if fk.onupdate is None: fk.onupdate = "CASCADE" return schema.Table(*args, **kw) def Column(*args, **kw): """A schema.Column wrapper/hook for dialect-specific tweaks.""" test_opts = {k: kw.pop(k) for k in list(kw) if k.startswith("test_")} if not config.requirements.foreign_key_ddl.enabled_for_config(config): args = [arg for arg in args if not isinstance(arg, schema.ForeignKey)] col = schema.Column(*args, **kw) if test_opts.get("test_needs_autoincrement", False) and kw.get( "primary_key", False ): if col.default is None and col.server_default is None: col.autoincrement = True # allow any test suite to pick up on this col.info["test_needs_autoincrement"] = True # hardcoded rule for firebird, oracle; this should # be moved out if exclusions.against(config._current, "firebird", "oracle"): def add_seq(c, tbl): c._init_items( schema.Sequence( _truncate_name( config.db.dialect, tbl.name + "_" + c.name + "_seq" ), optional=True, ) ) event.listen(col, "after_parent_attach", add_seq, propagate=True) return col def _truncate_name(dialect, name): if len(name) > dialect.max_identifier_length: return ( name[0 : max(dialect.max_identifier_length - 6, 0)] + "_" + hex(hash(name) % 64)[2:] ) else: return name
Save
cmd:
run