summaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/tablemodifier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/tablemodifier.cpp')
-rw-r--r--SQLiteStudio3/coreSQLiteStudio/tablemodifier.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/tablemodifier.cpp b/SQLiteStudio3/coreSQLiteStudio/tablemodifier.cpp
index a0f6262..9c14f63 100644
--- a/SQLiteStudio3/coreSQLiteStudio/tablemodifier.cpp
+++ b/SQLiteStudio3/coreSQLiteStudio/tablemodifier.cpp
@@ -620,10 +620,10 @@ bool TableModifier::isTableAliasUsedForColumn(const TokenPtr &token, const StrHa
}
SelectResolver::Table table = resolvedTables.value(token->value, Qt::CaseInsensitive);
- if (table.alias.isNull())
+ if (table.tableAlias.isNull())
return false;
- if (table.alias.compare(token->value), Qt::CaseInsensitive != 0)
+ if (table.tableAlias.compare(token->value), Qt::CaseInsensitive != 0)
return false;
// If the table token is mentioned in FROM clause, it's not a subject for aliased usage, cuase it defines alias, not uses it.