10024 lines
3.5 MiB
Plaintext
10024 lines
3.5 MiB
Plaintext
// Copyright 2023 Dolthub, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package output
|
|
|
|
import "testing"
|
|
|
|
func TestCreateAggregate(t *testing.T) {
|
|
tests := []QueryParses{
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , SERIALFUNC = serialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ORDER BY VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN arg_data_type , arg_data_type ORDER BY argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ORDER BY arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type , arg_data_type ORDER BY argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC arg_data_type , arg_data_type ORDER BY IN argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , PARALLEL = SAFE )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ORDER BY arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , PARALLEL = SAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC argname arg_data_type ORDER BY argname arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN argname arg_data_type ORDER BY IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , PARALLEL = RESTRICTED )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ORDER BY arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ORDER BY VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ORDER BY VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , PARALLEL = UNSAFE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ORDER BY arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , HYPOTHETICAL )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( IN argname arg_data_type ORDER BY arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , HYPOTHETICAL )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ORDER BY VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , HYPOTHETICAL )"),
|
|
Parses("CREATE AGGREGATE name ( arg_data_type , arg_data_type ORDER BY VARIADIC arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , PARALLEL = SAFE , HYPOTHETICAL )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ORDER BY IN arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , PARALLEL = RESTRICTED , HYPOTHETICAL )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type , arg_data_type ORDER BY IN argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , PARALLEL = RESTRICTED , HYPOTHETICAL )"),
|
|
Parses("CREATE AGGREGATE name ( IN arg_data_type ORDER BY VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , PARALLEL = RESTRICTED , HYPOTHETICAL )"),
|
|
Parses("CREATE AGGREGATE name ( VARIADIC argname arg_data_type ORDER BY VARIADIC argname arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , PARALLEL = UNSAFE , HYPOTHETICAL )"),
|
|
Parses("CREATE AGGREGATE name ( argname arg_data_type ORDER BY VARIADIC arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , PARALLEL = UNSAFE , HYPOTHETICAL )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( VARIADIC arg_data_type ORDER BY arg_data_type , arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , PARALLEL = UNSAFE , HYPOTHETICAL )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( arg_data_type , arg_data_type ORDER BY arg_data_type ) ( SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , PARALLEL = UNSAFE , HYPOTHETICAL )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , INITCOND = initial_condition , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSTYPE = mstate_data_type , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MSFUNC = msfunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_ONLY , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC = mffunc , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_ONLY , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = TRUE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , MSFUNC = msfunc , MINVFUNC = minvfunc , MSSPACE = 16 , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = SHAREABLE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MINVFUNC = minvfunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , DESERIALFUNC = deserialfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = READ_WRITE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC = ffunc , FINALFUNC_EXTRA = TRUE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MINVFUNC = minvfunc , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC = ffunc , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , MSFUNC = msfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE OR REPLACE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_MODIFY = READ_WRITE , SERIALFUNC = serialfunc , DESERIALFUNC = deserialfunc , MSFUNC = msfunc , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , INITCOND = initial_condition , MSTYPE = mstate_data_type , MSSPACE = 16 , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = TRUE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , SSPACE = 16 , FINALFUNC_MODIFY = READ_ONLY , COMBINEFUNC = combinefunc , SERIALFUNC = serialfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
Parses("CREATE AGGREGATE name ( BASETYPE = base_type , SFUNC = sfunc , STYPE = state_data_type , FINALFUNC_EXTRA = FALSE , FINALFUNC_MODIFY = SHAREABLE , DESERIALFUNC = deserialfunc , INITCOND = initial_condition , MSFUNC = msfunc , MINVFUNC = minvfunc , MSTYPE = mstate_data_type , MFINALFUNC = mffunc , MFINALFUNC_EXTRA = FALSE , MFINALFUNC_MODIFY = READ_WRITE , MINITCOND = minitial_condition , SORTOP = > )"),
|
|
}
|
|
RunTests(t, tests)
|
|
}
|