Skip to content

schema name should not allow "upper-case"  #564

@ttngu207

Description

@ttngu207

A schema name with upper-case letter in it will result in incorrect behavior when referenced by another schema. Note: no error thrown

Quick example:

schema = dj.schema('Schema_A')
@schema
class Subject(dj.Manual)
    definition = """
    name: varchar(32)
    """

schema = dj.schema('schema_b')

@schema
class Recording(dj.Manual)
    definition = """
    -> Schema_A.Subject
    id: smallint
    """

Here, schema_b.Recording will not be able to reference Schema_A.Subject properly.

Metadata

Metadata

Assignees

No one assigned

    Labels

    staleIndicates issues, pull requests, or discussions are inactive

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions