File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -244,9 +244,9 @@ define_keywords!(
244244 COMPRESSION ,
245245 COMPUPDATE ,
246246 COMPUTE ,
247- CONFIGURATION ,
248247 CONCURRENTLY ,
249248 CONDITION ,
249+ CONFIGURATION ,
250250 CONFLICT ,
251251 CONNECT ,
252252 CONNECTION ,
Original file line number Diff line number Diff line change @@ -950,9 +950,7 @@ fn parse_alter_collation() {
950950#[ test]
951951fn parse_create_text_search_configuration ( ) {
952952 assert_eq ! (
953- pg( ) . verified_stmt(
954- "CREATE TEXT SEARCH CONFIGURATION public.myconfig (PARSER = myparser)"
955- ) ,
953+ pg( ) . verified_stmt( "CREATE TEXT SEARCH CONFIGURATION public.myconfig (PARSER = myparser)" ) ,
956954 Statement :: CreateTextSearchConfiguration ( CreateTextSearchConfiguration {
957955 name: ObjectName :: from( vec![ Ident :: new( "public" ) , Ident :: new( "myconfig" ) ] ) ,
958956 options: vec![ SqlOption :: KeyValue {
@@ -963,7 +961,9 @@ fn parse_create_text_search_configuration() {
963961 ) ;
964962
965963 assert_eq ! (
966- pg( ) . parse_sql_statements( "CREATE TEXT SEARCH CONFIGURATION myconfig PARSER = pg_catalog.default" ) ,
964+ pg( ) . parse_sql_statements(
965+ "CREATE TEXT SEARCH CONFIGURATION myconfig PARSER = pg_catalog.default"
966+ ) ,
967967 Err ( ParserError :: ParserError (
968968 "Expected: (, found: PARSER" . to_string( )
969969 ) )
You can’t perform that action at this time.
0 commit comments