Home
last modified time | relevance | path

Searched refs:quotedColName (Results 1 – 2 of 2) sorted by relevance

/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/db/
H A DpgSet.cpp203 wxString quotedColName = colname; in ColNumber() local
204 quotedColName.Replace(wxT("\""), wxT("\"\"")); in ColNumber()
205 col = PQfnumber(res, (wxT("\"") + quotedColName + wxT("\"")).mb_str(conv)); in ColNumber()
221 wxString quotedColName = colname; in HasColumn() local
222 quotedColName.Replace(wxT("\""), wxT("\"\"")); in HasColumn()
223 return (PQfnumber(res, (wxT("\"") + quotedColName + wxT("\"")).mb_str(conv)) < 0 ? false : true); in HasColumn()
/dports/devel/spark/spark-2.1.1/sql/core/src/main/scala/org/apache/spark/sql/
H A DDataFrameNaFunctions.scala407 val quotedColName = "`" + col.name + "`" constant
410 nanvl(df.col(quotedColName), lit(null)) // nanvl only supports these types
411 case _ => df.col(quotedColName)