 |
SoftTree Technologies
Technical Support Forums
|
|
Author |
Message |
gemisigo
Joined: 11 Mar 2010 Posts: 2165
|
|
$ARGS$ seems to be broken |
|
$ARGS$ macro seems to be broken. None of these insert anything into the editor:
$ARGS$
$ARGS(vertical)$
$ARGS(types)$
$ARGS(type_classes)$
$ARGS(vertical,type_classes)$
|
|
Sat Nov 10, 2012 3:55 am |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7948
|
|
|
|
I have reported this issue on Saturday. Hope that a fix it for it will be available soon.
|
|
Mon Nov 12, 2012 9:33 am |
|
 |
gemisigo
Joined: 11 Mar 2010 Posts: 2165
|
|
|
|
Thank you very much.
|
|
Mon Nov 12, 2012 9:40 am |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7948
|
|
|
Fri Nov 30, 2012 1:45 pm |
|
 |
gemisigo
Joined: 11 Mar 2010 Posts: 2165
|
|
|
|
Well, something definitely has changed, but $ARGS$ now displays extremely weird behavior. I've created the following function:
 |
 |
CREATE FUNCTION dbo.fs_test_function
(
@first_argument INT
,@second_argument VARCHAR(64)
,@third_argument BIGINT
,@fourth_argument BIT
)
RETURNS INT
AS
BEGIN
RETURN 0
END
GO
|
And the following snippets (with the following results):
Snippet1:
 |
 |
args:
-- comment
$ARGS$
-- another comment
args_end: |
Result1:
 |
 |
args: -- comment @first_argument, @second_argument, @third_argument,
@fourth_argument -- another comment args_end: |
Snippet2:
 |
 |
args_type_classes:
-- comment
$ARGS(type_classes)$
-- another comment
args_type_classes_end: |
Result2:
 |
 |
args_type_classes: -- comment @first_argument int, @second_argument varchar,
@third_argument bigint, @fourth_argument bit -- an another comment
args_type_classes_end: |
Snippet3:
 |
 |
args_types:
-- comment
$ARGS(types)$
-- another comment
args_types_end: |
Result3:
 |
 |
args_types: -- comment @first_argument int, @second_argument varchar(64),
@third_argument bigint, @fourth_argument bit -- another comment nt
args_types_end:
|
Snippet4:
 |
 |
args_vertical:
-- comment
$ARGS(vertical)$
-- another comment
args_vertical_end: |
Result4:
 |
 |
args_vertical: -- comment @first_argument,
@second_argument,
@third_argument,
@fourth_argument -- another cor comment
args_vertical_end:
|
Snippet5:
 |
 |
args_vertical_type_classes:
-- comment
$ARGS(vertical,type_classes)$
-- another comment
args_vertical_type_classes_end: |
Result5:
 |
 |
args_vertical_type_classes: -- comment @first_argument,
@second_argument,
@third_argument,
@fourth_argument
-- another comment
args_vertical_type_classes_end: |
Are there any changes in DB Queries that could be the cause of this?
|
|
Sat Dec 01, 2012 3:56 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7948
|
|
|
|
Thank you for your continues and valuable feedback. We have sent you a link for the private build 6.3.170. Please let us know if this issue has been fixed in that build and the $ARGS$ is working correctly in that build.
|
|
Mon Dec 03, 2012 1:32 pm |
|
 |
gemisigo
Joined: 11 Mar 2010 Posts: 2165
|
|
|
|
Yes, it is, thank you very much for the quick fix.
|
|
Tue Dec 04, 2012 4:30 am |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|