Home
last modified time | relevance | path

Searched refs:quoted_table (Results 1 – 25 of 39) sorted by relevance

12

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/database/migration_helpers/
H A Dv2.rb235 quoted_table = quote_table_name(table)
239 create_insert_trigger(insert_trigger_name, quoted_table, quoted_old, quoted_new)
240 create_update_trigger(update_old_trigger_name, quoted_table, quoted_new, quoted_old)
241 create_update_trigger(update_new_trigger_name, quoted_table, quoted_old, quoted_new)
248 quoted_table = quote_table_name(table)
250 drop_trigger(insert_trigger_name, quoted_table)
251 drop_trigger(update_old_trigger_name, quoted_table)
252 drop_trigger(update_new_trigger_name, quoted_table)
265 def create_insert_trigger(trigger_name, quoted_table, quoted_old_column, quoted_new_column) argument
295 … def create_update_trigger(trigger_name, quoted_table, quoted_source_column, quoted_target_column) argument
[all …]
/dports/www/fabio/fabio-1.5.14/vendor/github.com/hashicorp/vault/vault-0.6.0/physical/
H A Dpostgresql.go36 quoted_table := pq.QuoteIdentifier(unquoted_table)
57 put_statement = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
64 table: quoted_table,
73 "get": "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
74 "delete": "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
75 "list": "SELECT key FROM " + quoted_table + " WHERE path = $1" +
76 "UNION SELECT substr(path, length($1)+1) FROM " + quoted_table + "WHERE parent_path = $1",
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/vault/physical/postgresql/
H A Dpostgresql.go49 quoted_table := pq.QuoteIdentifier(unquoted_table)
86 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
93 table: quoted_table,
96 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
97 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
98 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
100 quoted_table + " WHERE parent_path LIKE $1 || '%'",
/dports/databases/p5-SQL-Maker/SQL-Maker-1.21/lib/SQL/
H A DMaker.pm84 my $quoted_table = $self->_quote($table);
122 my $sql = "$prefix $quoted_table" . $self->new_line . 'DEFAULT VALUES';
126 my $sql = "$prefix $quoted_table" . $self->new_line;
143 my $quoted_table = $self->_quote($table);
144 my $sql = "DELETE FROM $quoted_table";
164 my $quoted_table = $self->_quote($table);
165 my $sql = "UPDATE $quoted_table SET " . join(', ', @$columns) . $w->[0];
/dports/sysutils/helmfile/vault-f6547fa8e820/physical/postgresql/
H A Dpostgresql.go101 quoted_table := pq.QuoteIdentifier(unquoted_table)
158 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
171 table: quoted_table,
174 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
176 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
177 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/misc/concourse/vault-bdd38fca2cff/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/vault/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/security/vault/vault-1.8.2/physical/postgresql/
H A Dpostgresql.go102 quoted_table := pq.QuoteIdentifier(unquoted_table)
159 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
172 table: quoted_table,
175 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
176 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
177 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
178 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/github.com/hashicorp/vault/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/hashicorp/vault/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/sysutils/gomplate/vault-sdk-v0.1.13/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/hashicorp/vault/vault-api-v1.0.4/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/devel/gitlab-runner/vault-sdk-v0.1.13/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/sysutils/istio/vault-sdk-v0.1.12/physical/postgresql/
H A Dpostgresql.go100 quoted_table := pq.QuoteIdentifier(unquoted_table)
157 put_query = "INSERT INTO " + quoted_table + " VALUES($1, $2, $3, $4)" +
170 table: quoted_table,
173 get_query: "SELECT value FROM " + quoted_table + " WHERE path = $1 AND key = $2",
174 delete_query: "DELETE FROM " + quoted_table + " WHERE path = $1 AND key = $2",
175 list_query: "SELECT key FROM " + quoted_table + " WHERE path = $1" +
176 …NION ALL SELECT DISTINCT substring(substr(path, length($1)+1) from '^.*?/') FROM " + quoted_table +
/dports/databases/spatialite/libspatialite-5.0.1/src/spatialite/
H A Dmetatables.c3725 char *quoted_table; in updateGeometryTriggers() local
4645 free (quoted_table); in updateGeometryTriggers()
4692 char *quoted_table; in updateTemporaryGeometryTriggers() local
4778 free (quoted_table); in updateTemporaryGeometryTriggers()
4821 free (quoted_table); in updateTemporaryGeometryTriggers()
5090 free (quoted_table); in updateTemporaryGeometryTriggers()
5151 free (quoted_table); in validateRowid()
5204 char *quoted_table; in validateTemporaryRowid() local
5213 quoted_table); in validateTemporaryRowid()
5258 char *quoted_table; in buildSpatialIndexEx() local
[all …]
H A Dvirtualspatialindex.c112 char *quoted_table = gaiaDoubleQuotedSql (table); in vspidx_validate_view_rowid() local
113 sql = sqlite3_mprintf ("PRAGMA table_info(\"%s\")", quoted_table); in vspidx_validate_view_rowid()
116 free (quoted_table); in vspidx_validate_view_rowid()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/database/
H A Dgrant.rb14 quoted_table = connection.quote(table)
17 connection.select_one("SELECT has_table_privilege(#{quoted_table}, 'TRIGGER')").present?
/dports/databases/spatialite-tools/spatialite-tools-5.0.1/
H A Dspatialite_convert.c447 char *quoted_table; in update_triggers() local
617 free (quoted_table); in update_triggers()
825 free (quoted_table); in update_triggers()
850 free (quoted_table); in update_triggers()
875 free (quoted_table); in update_triggers()
994 free (quoted_table); in update_triggers()
1022 free (quoted_table); in update_triggers()
1051 free (quoted_table); in update_triggers()
1090 free (quoted_table); in update_triggers()
1118 free (quoted_table); in update_triggers()
[all …]
/dports/www/trac-devel/Trac-1.5.3/trac/db/
H A Dconvert.py55 quoted_table = db.quote(table)
59 cursor.execute('DELETE FROM ' + quoted_table)
71 (quoted_table, ','.join(map(db.quote, columns)))
H A Dmysql_backend.py446 quoted_table = self.quote(table)
447 cursor.execute("SHOW INDEX FROM %s" % quoted_table)
458 quoted_table)
461 (quoted_table, self.quote(key)))
463 (quoted_table, self.quote(column)))
/dports/databases/p5-SQL-Maker/SQL-Maker-1.21/lib/SQL/Maker/Plugin/
H A DInsertMulti.pm32 my $quoted_table = $self->_quote($table);
35 my $sql = "$prefix $quoted_table" . $self->new_line;
/dports/www/chromium-legacy/chromium-88.0.4324.182/sql/test/
H A Dtest_helpers.cc257 std::string quoted_table; in CountTableColumns() local
263 quoted_table = s.ColumnString(0); in CountTableColumns()
266 std::string sql = "PRAGMA table_info(" + quoted_table + ")"; in CountTableColumns()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/background_migration/
H A Dcopy_column.rb20 quoted_table = connection.quote_table_name(table)
/dports/databases/postgresql-odbc/psqlodbc-13.02.0000/
H A Dresults.c3058 const char *quoted_table; in positioned_load() local
3060 quoted_table = ti_quote(stmt, tableoid, table_fqn, sizeof(table_fqn)); in positioned_load()
3068 quoted_table, in positioned_load()
3069 quoted_table, in positioned_load()
3073 …pBuffer(&selstr, "%.*sfrom %s where ctid = '%s'", (int) from_pos, load_stmt, quoted_table, tidval); in positioned_load()
3076 … "%.*sfrom %s where ctid = (select currtid(0, '(0,0)'))", (int) from_pos, load_stmt, quoted_table); in positioned_load()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/client/
H A Dmysqldump.cc3365 char *quoted_table; in dump_column_statistics_for_table() local
3407 quoted_table = quote_name(table_name, name_buff, false); in dump_column_statistics_for_table()
3418 quoted_table, quoted_column, row[1]); in dump_column_statistics_for_table()

12