@@ -3055,8 +3055,8 @@ psql_completion(const char *text, int start, int end)
3055
3055
/* DECLARE */
3056
3056
3057
3057
/*
3058
- * Complete DECLARE <name> with one of BINARY, INSENSITIVE, SCROLL, NO
3059
- * SCROLL, and CURSOR.
3058
+ * Complete DECLARE <name> with one of BINARY, ASENSITIVE, INSENSITIVE,
3059
+ * SCROLL, NO SCROLL, and CURSOR.
3060
3060
*/
3061
3061
else if (Matches ("DECLARE" , MatchAny ))
3062
3062
COMPLETE_WITH ("BINARY" , "ASENSITIVE" , "INSENSITIVE" , "SCROLL" , "NO SCROLL" ,
@@ -3070,8 +3070,8 @@ psql_completion(const char *text, int start, int end)
3070
3070
* indicates.
3071
3071
*/
3072
3072
else if (HeadMatches ("DECLARE" ) && TailMatches ("BINARY" ))
3073
- COMPLETE_WITH ("INSENSITIVE" , "SCROLL" , "NO SCROLL" , "CURSOR" );
3074
- else if (HeadMatches ("DECLARE" ) && TailMatches ("INSENSITIVE" ))
3073
+ COMPLETE_WITH ("ASENSITIVE" , " INSENSITIVE" , "SCROLL" , "NO SCROLL" , "CURSOR" );
3074
+ else if (HeadMatches ("DECLARE" ) && TailMatches ("ASENSITIVE| INSENSITIVE" ))
3075
3075
COMPLETE_WITH ("SCROLL" , "NO SCROLL" , "CURSOR" );
3076
3076
else if (HeadMatches ("DECLARE" ) && TailMatches ("SCROLL" ))
3077
3077
COMPLETE_WITH ("CURSOR" );
0 commit comments