Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CMssqlSchema::findTableNames() returns table names with twice prepended schema #2299

Closed
resurtm opened this issue Apr 5, 2013 · 0 comments
Closed

Comments

@resurtm
Copy link
Contributor

resurtm commented Apr 5, 2013

CMssqlSchema::findTableNames() returns table names with twice prepended schema.

Example 1:

CVarDumper::dump($this->findTableNames('guest'));

array
(
    0 => 'guest.guest.users'
    1 => 'guest.guest.posts'
)

Example 2:

CVarDumper::dump($this->findTableNames());

array
(
    0 => 'categories'
    1 => 'orders'
    2 => 'types'
    3 => 'post_category'
    4 => 'items'
    5 => 'comments'
    6 => 'profiles'
    7 => 'tbl_migration'
    8 => 'test'
    9 => 'YiiSession'
)

Fix is ready—will push it today.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant