diff options
author | Max <post@wickenrode.com> | 2016-02-17 14:42:45 +0100 |
---|---|---|
committer | Max <post@wickenrode.com> | 2016-02-17 14:44:50 +0100 |
commit | 9a930abbb1d83084b8d204f651b88fabd5aea858 (patch) | |
tree | b63271710d84dfe2c492841527b6f9682f26f98f /Source | |
parent | 4341c2a1d270f7a6ede47616ddf79135bcd37cfd (diff) | |
download | sequelpro-9a930abbb1d83084b8d204f651b88fabd5aea858.tar.gz sequelpro-9a930abbb1d83084b8d204f651b88fabd5aea858.tar.bz2 sequelpro-9a930abbb1d83084b8d204f651b88fabd5aea858.zip |
Fix an issue where auto completion in query editor would not work in some cases (#2406)release-1.1.1-rc2
Issue introduced in 0b9fb7e62aeba608081eb3ca1bc52dc7020c8add
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPDatabaseStructure.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPDatabaseStructure.m b/Source/SPDatabaseStructure.m index 934a57fa..b59b2d23 100644 --- a/Source/SPDatabaseStructure.m +++ b/Source/SPDatabaseStructure.m @@ -267,6 +267,7 @@ // Set up the database as an empty mutable dictionary ready for tables, and store a reference [queriedStructure setObject:[NSMutableDictionary dictionary] forKey:db_id]; NSMutableDictionary *databaseStructure = [queriedStructure objectForKey:db_id]; + structureWasUpdated = YES; NSUInteger uniqueCounter = 0; // used to make field data unique SPMySQLResult *theResult; |