Class: SynchronizePostgresStoredProcedures::StoredProcedures::Pg9
- Inherits:
-
Synchronizer
- Object
- Synchronizer
- SynchronizePostgresStoredProcedures::StoredProcedures::Pg9
- Defined in:
- lib/synchronize_postgres_stored_procedures/stored_procedures/pg_9.rb
Class Method Summary collapse
Methods inherited from Synchronizer
Constructor Details
This class inherits a constructor from SynchronizePostgresStoredProcedures::StoredProcedures::Synchronizer
Class Method Details
.pg_proc_columns ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/synchronize_postgres_stored_procedures/stored_procedures/pg_9.rb', line 4 def self.pg_proc_columns [ "proowner", "prolang", "procost", "prorows", "provariadic", "protransform", "proisagg", "proiswindow", "prosecdef", "proleakproof", "proisstrict", "proretset", "provolatile", "pronargs", "pronargdefaults", "prorettype", "proargtypes", "proallargtypes", "proargmodes", "proargnames", "proargdefaults", "probin", "proconfig", "proacl" ] end |