Skip to content

Commit

Permalink
update license year
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifersp committed Jan 8, 2024
1 parent f5fbca1 commit e54fb63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 26 deletions.
13 changes: 1 addition & 12 deletions postgres/parser/sem/tree/alter_aggregate.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Dolthub, Inc.
// Copyright 2024 Dolthub, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -26,17 +26,6 @@ package tree

import "strings"

//ALTER AGGREGATE name ( aggregate_signature ) RENAME TO new_name
//ALTER AGGREGATE name ( aggregate_signature )
// OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }
//ALTER AGGREGATE name ( aggregate_signature ) SET SCHEMA new_schema
//
//where aggregate_signature is:
//
//* |
//[ argmode ] [ argname ] argtype [ , ... ] |
//[ [ argmode ] [ argname ] argtype [ , ... ] ] ORDER BY [ argmode ] [ argname ] argtype [ , ... ]

var _ Statement = &AlterAggregate{}

// AlterAggregate represents a ALTER AGGREGATE statement.
Expand Down
8 changes: 1 addition & 7 deletions postgres/parser/sem/tree/alter_collation.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Dolthub, Inc.
// Copyright 2024 Dolthub, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -24,12 +24,6 @@

package tree

//ALTER COLLATION name REFRESH VERSION

//ALTER COLLATION name RENAME TO new_name
//ALTER COLLATION name OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }
//ALTER COLLATION name SET SCHEMA new_schema

var _ Statement = &AlterCollation{}

// AlterCollation represents a ALTER COLLATION statement.
Expand Down
8 changes: 1 addition & 7 deletions postgres/parser/sem/tree/alter_conversion.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Dolthub, Inc.
// Copyright 2024 Dolthub, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -24,12 +24,6 @@

package tree

//ALTER COLLATION name REFRESH VERSION

//ALTER COLLATION name RENAME TO new_name
//ALTER COLLATION name OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }
//ALTER COLLATION name SET SCHEMA new_schema

var _ Statement = &AlterConversion{}

// AlterConversion represents a ALTER COLLATION statement.
Expand Down

0 comments on commit e54fb63

Please sign in to comment.