Auto complete inserts duplicate "dbo" in function name
Posted: Sat 20 Dec 2014 15:22
Hi, this is something new in version 4.0.35 that I have encountered. If I write the following expression:
And then revise the "*' with something like this:
When I select the autocomplete for fGetMeasurementFullName, the dbo is duplicated as shown.
Note the dbo.dbo. Thanks for checking this out.
Code: Select all
SELECT * FROM measurements m
Code: Select all
SELECT dbo.fGetMeas FROM measurements m
Code: Select all
SELECT dbo.dbo.fGetMeasurementFullName() FROM measurements m